美文网首页
如何使用swagger2轻松生成在线接口文档

如何使用swagger2轻松生成在线接口文档

作者: 放不下FBX | 来源:发表于2018-10-25 08:00 被阅读0次
    • 在pom.xml中引入依赖
    <dependency>
                <groupId>com.spring4all</groupId>
                <artifactId>swagger-spring-boot-starter</artifactId>
                <version>1.8.0.RELEASE</version>
            </dependency>
    
    
    • 在应用主类中增加@EnableSwagger2Doc注解
    @SpringBootApplication
    @EnableSwagger2Doc
    public class SpringDataJpaApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(SpringDataJpaApplication.class, args);
        }
    }
    
    
    • 参数配置示例
    swagger.enabled=true
    swagger.title=spring-data-jpa module
    swagger.description=Starter for swagger 2.x
    swagger.license=Apache License, Version 2.0
    swagger.licenseUrl=https://www.apache.org/licenses/LICENSE-2.0.html
    swagger.termsOfServiceUrl=https://github.com/dyc87112/spring-boot-starter-swagger
    swagger.contact.name=RanRan Tao
    swagger.contact.url=https://www.jianshu.com/u/822585e5c69a
    swagger.contact.email=16422802@qq.com
    swagger.base-package=com.example.controller
    swagger.base-path=/**
    swagger.exclude-path=/error, /ops/**
    
    

    相关文章

      网友评论

          本文标题:如何使用swagger2轻松生成在线接口文档

          本文链接:https://www.haomeiwen.com/subject/inzftqtx.html