1.SpringBoot下载
https://start.spring.io/
选择工程类型,编译语言,版本,工程名称,需要支持组件等;选择好了以后点击生成项目。
之后会下载一个压缩文件,解压之后导入到idea中即可。
导入之后项目层及目录如下
2.搭建
在demo中新建web包,在包下新建HelloController类
@RestController
public class HelloController {
@RequestMapping("/hello")
public String hello(){
String msg ="hello controller";
System.out.println(msg);
return msg;
}
}
启动项目访问 http://localhost:8080/hello 会显示 hello controller,证明搭建成功
3.遇到的问题
当选择支持组件中选择了JPA之后,运行项目会报错
解决办法暂时在pom.xml文件中注释掉JPA