如何快速创建一个springboot项目

如何快速创建一个springboot项目,第1张

如何快速创建一个spring boot项目

可以使用eclipse或idea快速创建


文章目录
  • 如何快速创建一个spring boot项目
  • 一、idea快速创建springboot项目
  • 二、sts快速创建springboot项目


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

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/924050.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-16
下一篇 2022-05-16

发表评论

登录后才能评论

评论列表(0条)

保存