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

swagger的使用

时间:2018-06-25 21:00:13      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:text   sre   control   option   测试的   add   AC   webconfig   poll   

swagger的主要作用是:生成一个对功能进行测试的接口,开发者不用写前端页面就可以对后台的功能进行测试

1.添加依赖

 

技术分享图片

 

2.添加配置文件

 新建一个config包

添加两个配置文件Swagger2.java和WebConfig.java

代码截图如下:

技术分享图片

package com.braup.apps.poll.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Configuration
public class WebConfig implements WebMvcConfigurer {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**").allowedOrigins("*").allowedMethods("GET","POST","PUT","OPTIONS","DELETE","PATCH").allowCredentials(true).maxAge(3600);
    }
    
}

3.然后在浏览器访问http://localhost:8080/swagger-ui.html

就可以测试自己写的Controll了(前提是你写好了controller)

 

swagger的使用

标签:text   sre   control   option   测试的   add   AC   webconfig   poll   

原文地址:https://www.cnblogs.com/zzuli/p/9226179.html

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