springboot启动类位置
controller如下@RestControllerpublic class HelloWorldController { @RequestMapping("/hello") public String hello(String name){ return name; } }使用springbootTest测试代码如下: @SpringBoot...