码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMVC整合Swagger(非Spring Boot)

时间:2018-10-11 21:58:45      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:style   artifact   img   boot   api   lin   source   nis   lang   

1.新建项目

1.1 maven项目

技术分享图片

1.2 设置项目名

技术分享图片

1.3 设置本地maven

技术分享图片

1.4 finish

 

2.添加依赖

打开pom文件,添加下面的依赖

[sourcecode language=‘xml‘  padlinenumbers=‘true‘]
        <!--swagger-->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.6.1</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.6.1</version>
        </dependency>
[/sourcecode]

3.添加Swagger的配置类

[sourcecode language=‘java‘ ]
@Configuration
@EnableWebMvc
@EnableSwagger2
public class SwaggerConfig {
    @Bean
    public Docket createRestApi() {
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.basePackage("com.whu505.controller"))
                .paths(PathSelectors.any())
                .build();
    }

    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("Person RESTful API文档")
                .description("Person Controller的文档")
                .termsOfServiceUrl("")
                .version("1.0")
                .build();
    }

}
[/sourcecode]

SpringMVC整合Swagger(非Spring Boot)

标签:style   artifact   img   boot   api   lin   source   nis   lang   

原文地址:https://www.cnblogs.com/GIS-Lu/p/9774534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!