swagger in the maven

The introduction of the pom.xml

You need to specify in the release version

 Then import dependencies

<dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>${springfox.version}</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>${springfox.version}</version>
        </dependency>

Write a class

package cn.jiedada.crm.web.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

@Configuration
@EnableWebMvc
@EnableSwagger2
@ComponentScan (basePackages = "cn.jiedada.crm.web.controller" )
 public  class SwaggerConfig {
     / * @Configuration equivalent of our configuration file
    @EnableWebMvc
    @EnableSwagger2 使用swagger
    @ComponentScan scan package path
    @Bean the equivalent of a bean configuration
    * */
    @Bean
    public Docket api(){
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(this.apiInfo())
                .select()
                .apis(RequestHandlerSelectors.basePackage("cn.jiedada.crm.web.controller"))
                .paths(PathSelectors.any())
                .build();
    }


    private ApiInfo apiInfo(){
        @SuppressWarnings("deprecation")
        ApiInfo info=new ApiInfo(
                "Spring 构建RestFule",
                "aaa",
                "aa",
                "a",
                "cc",
                "x",
                "x");
        return info;
    }
}
View Code

 

 

Guess you like

Origin www.cnblogs.com/xiaoruirui/p/11809795.html