Swagger请求的更改请求的url地址

前言

1、引入swagger 相关jar包


		2.7.0




    io.springfox
    springfox-swagger2
    ${swagger.version}


    io.springfox
    springfox-swagger-ui
    ${swagger.version}



2、选择一个swagger的目录下载

必须选择2.0以上,3.0以下版本,将其中的dist文件夹拷贝到自己项目中的resources/swagger目录下,如图

https://github.com/swagger-api/swagger-ui

Swagger请求的更改请求的url地址_第1张图片

3、在resources下新建swagger.properties文件,其中的内容为

springfox.documentation.swagger.v2.path=/duodian/swagger

4、再dist目录下面的index.html中添加


url = "http://petstore.swagger.io/v2/swagger.json"
修改为
url = url = "/duodian/swagger";
修改后如下



                    
                    

你可能感兴趣的:(Swagger)