本文使用IDEA开发。
create new project
maven信息
项目目录
@RestController
public class HelloWorldController {
@GetMapping("hello-world")
public String helloWorld() {
return "hello world";
}
}
url
http://localhost:8080/hello-world
结果
原文:https://www.cnblogs.com/lijingyulee/p/12000740.html