详解SpringBoot结合swagger2快速生成简单的接口文档
人气:01. pom.xml中加入依赖
<dependency> <groupId>com.spring4all</groupId> <artifactId>swagger-spring-boot-starter</artifactId> <version>1.8.0.RELEASE</version> </dependency>
2. 在启动类(即带@SpringBootApplication这个注解的类)上添加@EnableSwagger2Doc注解
3. 在application.properties中配置如下
swagger.enabled=true swagger.title=spring-boot-mybatis module api 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/pbw123/spring-boot-demo swagger.contact.name=mqXu swagger.contact.url=https://www.jianshu.com/u/2f60beddf923 swagger.contact.email=2635225112@qq.com swagger.base-package=com.springboot.mybatis.controller swagger.base-path=/** swagger.exclude-path=/error, /ops/**
经我多次尝试application.properties中不加任何swagger配置也可生成文档进行正常测试
另一种用swagger自动生成文档的方式请前往
您可能感兴趣的文章:
- SpringBoot整合Swagger2代码实例
- SpringBoot整合Swagger2实例方法
- IDEA SpringBoot 项目配置Swagger2的详细教程
- springboot 配置使用swagger2操作
- SpringBoot2.0集成Swagger2访问404的解决操作
- SpringBoot如何优雅地使用Swagger2
- springboot swagger2注解使用的教程
- SpringBoot基于Swagger2构建API文档过程解析
- SpringBoot结合Swagger2自动生成api文档的方法
- SpringBoot在生产快速禁用Swagger2的方法步骤
- SpringBoot整合Swagger2的示例
加载全部内容