1 、 搭建boot启动框架,这一步骤什么都不用添加,搭建完后框架如下:
2、因为是前后台项目,所以一般是需要有前台页面的,需要在后端maven依赖中加入web依赖包
spring-boot-starter-web 所有的后台依赖如下:
4.0.0 com.example cmstest 0.0.1-SNAPSHOT jar cmstest Demo project for Spring Boot org.springframework.boot spring-boot-starter-parent 2.0.3.RELEASE UTF-8 UTF-8 1.8 org.springframework.boot spring-boot-starter org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-maven-plugin
3、 搭建能被boot读取到的静态资源目录,在resources目录下新建static目录,boot默认读取的是static这个目录下的静态资源。这个目录用来存放后面前端的所有代码,默认显示index.html
4、启动项目,访问8080端口,成功。
5、说明:如果不用启动后台,只是前端调试,直接在index.html页面中,右键,选用浏览器打开就可以访问页面。