可以使用eclipse或idea快速创建
文章目录
- 如何快速创建一个spring boot项目
- 一、idea快速创建springboot项目
- 二、sts快速创建springboot项目
一、idea快速创建springboot项目
- file --> new project --> Spring Initializr --> 选则jdk --> next
- 修改信息 或默认 --> next
- 选择模块,需要什么功能就导入什么模块 --> next --> finish
- 需要联网自动下载spring boot项目
- 目录中的.mvn 、.gitignore、mvnw 、mvnw.cmd 没用把他删掉
- 可以在程序中添加一个controller类启动测试
- 默认生成的目录结构resources里边,
resources
static:保存静态资源,js、css、images;
templates:保存所有模板页面;(springboot默认jar嵌入式tomcat不支持jsp),可以使用模板引擎(freemarker、thymeleaf);
application.properties:spring boot的应用配置文件(也可以用application.yml),用来修改默认配置的;
二、sts快速创建springboot项目
- 右键 --> new --> spring starter project (other --> spring starter project ) – next
- 修改项目名等信息 --> next
- 选择要创建的模块 --> finish
- 联网创建
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)