使用spring initializr快速创建Spring Boot项目
IDE支持使用Spring的项目创建向导快速创建一个Spring Boot项目;
选择我们需要的模板;向导会联网创建Spring Boot项目;
默认生成的Spring Boot项目:
- 主程序已经生成好了,我们只需要我们自己的逻辑
- resources文件夹目录结构
- static:保存所有的静态资源;(js css images)
- templates:保存所有的模板页面;(Spring Boot默认jar包使用嵌入式的Tomcat,默认不支持JSP页面);可以使用模板引擎(freemarker、thymeleaf);
- apolication.properties:Spring Boot应用的配置文件;可以修改一些默认配置;
springboot-helloworld 学习02
原文:https://www.cnblogs.com/damahuhu/p/14840572.html