基于SpringBoot+Springmvc+mybatis+mybatis-generator代码自动生成架。
在上面的文章中我们实行了基本springBoot架构,接下来我们给这个架构添加swagger接口调试:
一:添加相应jar包,在pom.xml中添加如下代码:
<!-- swagger2配置pom开始 -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.2.2</version>
</dependency>
<!-- swagger2配置pom结束 -->
二:写一个swagger启动类,当启动App.java的时候会启动这个类。代码如下:
@Configuration
@EnableSwagger2
public class Swagger2 {
@Bean
public Docket createRestApi() {
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("com.practice.controller"))
.paths(PathSelectors.any())
.build();
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("Spring Boot中使用Swagger2构建RESTful APIs")
.description("仅用于开发环境")
.termsOfServiceUrl("http://97kankan.xin/")
.contact("abc")
.version("1.0")
.build();
}}
这样启动好App.java后,在输入框中输入;http://localhost:8080/swagger-ui.html#/.
就可以看到swagger的测试接口了.
标签:springfox,架构,启动,Swagger,Spring,Boot,apiInfo,swagger,添加 From: https://blog.51cto.com/u_16147772/6397229