start.spring.io快速搭建springboot项目页面解析介绍

先上总结:

1) Group 、Package Name中填总包名的前缀,如com.fxy

2)  Artifact 中填项目名

3) 要选择的依赖

    Core下的Cache

    Web下的Web

    Template Engines下的Thymeleaf

    SQL下的MySQL(如果要mybatis的话也把这个勾上)

4) 如果要支持jsp的话就在pom.xml加上jasper的jar



    org.apache.tomcat.embed
    tomcat-embed-jasper
    

具体步骤:

打开网址:start.spring.io

 

这几个直接默认就好

 

 

start.spring.io快速搭建springboot项目页面解析介绍_第1张图片

 

 

可以在pom.xml中看到

start.spring.io快速搭建springboot项目页面解析介绍_第2张图片

 

 

pom.xml中的依赖jar,可以快速搜索也可以慢慢勾选

start.spring.io快速搭建springboot项目页面解析介绍_第3张图片

start.spring.io快速搭建springboot项目页面解析介绍_第4张图片

 

 

选完之后直接点这个生成zip文件,然后maven 引入就好

 

你可能感兴趣的:(SpringBoot)