采纳答案成功!
向帮助你的同学说点啥吧!感谢那些助人为乐的人
为什么每次运行都报这个 Process finished with exit code 0
你的代码里是不是没有写controller啊。 没有检测到接口,所以就自动结束了
import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; /** * Created by Administrator on 2018/11/17. */ @Controller @EnableAutoConfiguration public class SampleController { @RequestMapping("/") @ResponseBody String home(){ return "Hello World"; } public static void main(String[] args) { SpringApplication.run(SampleController.class,args); } }
是有写的,import org.springframework.stereotype.Controller;引入的是这个包
登录后可查看更多问答,登录/注册
打破传统测试用例设计方法,搞懂基于TestNG的接口自动化测试技术
1.5k 1
1.3k 12
1.2k 10
1.2k 9
1.9k 6