在项目开发时候,我们不会自己创建一个maven项目,自己慢慢导入依赖,有更方便的方法:
1.idea快速创建spring boot项目
使用Spring Initializr
注意1:需要联网
注意2:resources里的目录结构:
(1)static:是用来存放静态资源的,比如css,js,img....
(2)templates:用来存放freemarker或者thymeleaf的模板
(3)application.properties: SpringBoot的配置文件,在这里可以修改SpringBoot的默认配置
2.sts(eclipse)快速创建spring boot项目
使用new spring starter project来创建,其他的和上面一样