使用IntelliJ Idea新建SpringBoot项目
程序员文章站
2022-05-08 22:28:08
...
使用IntelliJ Idea新建SpringBoot项目
简单给大家介绍一下我来创建SpringBoot项目使用的工具,本人使用IntelliJ Idea来创建项目,利用其中的Spring Initializr工具来快速创建项目。
步骤如下:
菜单栏中选择File–New–Project,出现如下图所示,然后选择Spring Initializr。
其中SDK可以根据自己需求选择合适的jdk版本,本人项目均使用的Jdk1.8
Service Url 是Spring官方提供的Spring Initializr工具地址。
然后点击Next,进入下面页面,其中以下各项内容与创建maven项目填写相同。
点击Next,如下图所示,可以配置SpringBoot项目或SpringCloud项目各种依赖,需要注意的是,SpringBoot旁边的2.0.0是自己需要使用的SpringBoot版本,根据自己的需求选择。
选择依赖和版本后,点击Next进入下图所示。设置项目名称,以及项目存储位置。
以上都设置完成后,点击Finish。
进入项目后,启动项目就可以看到SpringBoot项目启动后的标志Banner,第一个SpringBoot项目就这样搭建完成了。
- 引入Api接口文档生成工具:Swagger2
- 添加依赖
<!--swagger2-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
- 添加配置文件
/**
* @Description
* @Author
* @Version V1.0.0
* @Since 1.0
* @Date 2019-07-14
*/
@Configuration
@EnableSwagger2
@Profile({"dev","test"})//生产环境不开启
public class Swagger2Config {
@Bean
public Docket createRestApi() {
// 可以添加多个header或参数
ParameterBuilder tokenPar = new ParameterBuilder();
List<Parameter> pars = new ArrayList<Parameter>();
tokenPar.parameterType("header")// 参数类型支持header, cookie, body, query etc
.name("Authorization").description("请求参数中token字段测试")
.modelRef(new ModelRef("string"))//指定参数类型
.required(false).build(); //非必需,这里是全局配置,然而在登陆的时候是不用验证的
pars.add(tokenPar.build());
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors
.basePackage("com.mmz.tkp"))
.paths(PathSelectors.any()).build()
.globalOperationParameters(pars);
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("JAVA技术点测试项目 RESTful APIS")
.contact(new Contact("Clear zhou", "https://www.baidu.com", "[email protected]"))
.description("JAVA技术点测试项目接口文档说明")
.version("1.0")
.build();
}
}
推荐阅读
-
IntelliJ IDEA 中使用jRebel进行 Java 热部署教程图解
-
在IDEA中创建跑得起来的Springboot项目
-
IntelliJ IDEA中使用mybatis-generator的示例
-
使用vue-cli3新建一个项目并写好基本配置(推荐)
-
IntelliJ IDEA 使用经验总结(推荐)
-
解决Intellij IDEA 使用Spring-boot-devTools无效的问题
-
使用IntelliJ IDEA 进行代码对比的方法(两种方法)
-
IntelliJ Idea SpringBoot 数据库增删改查实例详解
-
初次使用IDEA创建maven项目的教程
-
新版本IntelliJ IDEA 构建maven,并用Maven创建一个web项目(图文教程)