博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springMVC swagger2
阅读量:6502 次
发布时间:2019-06-24

本文共 2311 字,大约阅读时间需要 7 分钟。

参考地址:https://www.cnblogs.com/exmyth/p/7183753.html

1. maven 依赖

io.springfox
springfox-swagger2
2.6.0
io.springfox
springfox-swagger-ui
2.6.0

2. Swagger UI模板 

    下载地址:https://github.com/swagger-api/swagger-ui

   swagger-ui-master/dist/index.html

   访问配置

  <mvc:resources mapping="/swagger/**" location="/swagger/" /> 

3. swagger 配置文件

 

@Configuration    // 配置注解,自动在本类上下文加载一些环境变量信息@EnableWebMvc @EnableSwagger2   // 使swagger2生效@ComponentScan(basePackages="com.test.controller") //需要扫描的包路径public class SpringfoxConfig extends WebMvcConfigurationSupport{    @Bean    public Docket petApi() {        return new Docket(DocumentationType.SWAGGER_2)                .apiInfo(apiInfo())                .select()                .apis(RequestHandlerSelectors                        .basePackage("com.test.controller")).build();    }    private ApiInfo apiInfo() {        return new ApiInfoBuilder().title("swagger API").description("")                .termsOfServiceUrl("http://localhost:8080").version("1.0")                .build();    }}

4. Controller中使用注解添加API文档

@Controller@RequestMapping("/person")@Api(tags="个人业务")public class PersonController {    @RequestMapping(value="/getPerson",method= RequestMethod.GET)    @ApiOperation(httpMethod = "GET", value = "个人信息", produces = MediaType.APPLICATION_JSON_VALUE)    public @ResponseBody Person getPersons() {        Person person = new Person();        person.setFirstName("fname");        person.setLastName("lname");        person.setAge(37);        person.setDeptName("dept");        return person;    }}

 

5.web.xml配置说明

dispatcher
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath*:/spring-mvc.xml
1
dispatcher
*.do
dispatcher
/v2/api-docs
说明:Springmvc前端控制器扫描路径增加“/v2/api-docs”,用于扫描Swagger的 /v2/api-docs,否则 /v2/api-docs无法生效。

6. 效果展示

  index.html 中修改url:

 

转载于:https://www.cnblogs.com/newlangwen/p/9646206.html

你可能感兴趣的文章
Java数据结构与算法(六) 希尔排序
查看>>
canvas学习笔记
查看>>
IntelliJ Idea下Go项目开启Debug调试
查看>>
elasticsearch安装步骤
查看>>
PHP获取Cookie模拟登录CURL(转)
查看>>
PHP-权限控制类(转)
查看>>
CSS3秘笈第三版涵盖HTML5学习笔记9~12章
查看>>
bzoj1044木棍分割
查看>>
leetcode-136-Single Number
查看>>
微信小程序笔记<五> 页面管理及生命周期(route)——getCurrentPages()
查看>>
http服务器小项目
查看>>
JS案例:Jq中的fadeOut和fadeIn实现简单轮播(没完善,简单实现)
查看>>
一些数学上的名词及操作
查看>>
C# DataGridVie利用model特性动态加载列
查看>>
IPv6 地址分类
查看>>
<%@ include %>指令和<jsp:include>区别
查看>>
因为文件组 'PRIMARY' 已满 解决办法
查看>>
Flume 读取实时更新的日志文件
查看>>
HDU 2049
查看>>
《Spring1之第十次站立会议》
查看>>