文件结构
application.properties
server.port=9999
DemoController.java
@RestController
public class DemoController {
@GetMapping("/hello")
public String demo(){
return "Hello World";
}
}
运行后访问localhost:9999/hello
第一个SpringBoot_HelloWorld程序
阅读 116
2022-02-05
文件结构
application.properties
server.port=9999
DemoController.java
@RestController
public class DemoController {
@GetMapping("/hello")
public String demo(){
return "Hello World";
}
}
运行后访问localhost:9999/hello
相关推荐
精彩评论(0)