springboot建立一个新项目
2020-12-17 本文已影响0人
一只永不止步的龙
方式一:在这个网址下载初始文件https://start.spring.io/
界面主要部分包括:管理工具,springboot版本,包名(group),工程名(Artifact),已选模块(我选择了一个web模块)。
方式二:使用IntelliJ IDEA开发工具来构建项目结构
生成的新项目直接运行会出现这样的界面
http://127.0.0.1:8080/#/
image
这时新建一个controller
@RequestMapping
@RestController
public class TestController {
@RequestMapping
public String hello(){
return "hello";
}
}
就会好了
http://127.0.0.1:8080/#/
image.png