码迷,mamicode.com
首页 > 其他好文 > 详细

一步一步教你SSM整合swagger

时间:2018-10-24 11:58:14      阅读:1218      评论:0      收藏:0      [点我收藏+]

标签:sources   核心   http   classpath   自动注入   ast   swagger   webapp   ping   

一:什么是swagger?

?swagger是一款非常好用的写API文档的框架。其他自行百度

二:ssm整合swagger?

1:在maven的pom文件中引入依赖:(注意版本,否则会导致tomcat不能正常启动

<!-- 引入swagger -->
        <!--springfox的核心jar包 -->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.7.0</version>
        </dependency>
        <!--springfox-ui的jar包(里面包含了swagger的界面静态文件) -->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.7.0</version>
        </dependency>
        <!--springfox依赖的jar包;如果你的项目中已经集成了无需重复 -->
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>2.9.0</version>
        </dependency>

2:创建SwaggerConfig.java文件、即:swagger的配置文件,最好放到单独的文件夹下

@WebAppConfiguration
@EnableSwagger2
@EnableWebMvc
@ComponentScan(basePackages="com.zgz.cn.controller")
public class SwaggerConfig {
    @Bean
    public Docket api() {
        return new Docket(DocumentationType.SWAGGER_2)
                .select()
                .apis(RequestHandlerSelectors.any())
                .build()
                .apiInfo(apiInfo());
    }

    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("xxx项目接口文档")
                .description("xxx项目接口测试")
                .version("1.0.0")
                .termsOfServiceUrl("")
                .license("")
                .licenseUrl("")
                .build();
    }
}

3:在SpringMVC的配置文件中配置:(配置所有控制器所在的包)

<!-- 配置swagger的bean -->
    <!-- 将静态资源交由默认的servlet处理 -->
    <mvc:default-servlet-handler/>
    <!-- 向容器自动注入配置 -->
    <context:annotation-config/>
    <!-- 将SwaggerConfig配置类注入 -->
    <bean class="com.zgz.cn.swagger.SwaggerConfig"/>
    <!-- 配置swagger资源不被拦截 -->
<!--    <bean id="swagger2Config" class="springfox.documentation.swagger2.configuration.Swagger2DocumentationConfiguration"/> -->
    <mvc:resources location="classpath:/META-INF/resources/" mapping="swagger-ui.html"/>
    <mvc:resources location="classpath:/META-INF/resources/webjars/" mapping="/webjars/**"/>

4:在web.xml中配置所有的请求都经过DispatcherServlet处理

<servlet-mapping>
        <servlet-name>springMVC</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

5:在控制器中使用注解:(swagger常用注解
技术分享图片
6:测试(访问地址:项目名/swagger-ui.html )
技术分享图片

一步一步教你SSM整合swagger

标签:sources   核心   http   classpath   自动注入   ast   swagger   webapp   ping   

原文地址:http://blog.51cto.com/13416247/2308248

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