Springfox Swagger使用端口80为HTTPS URL生成请求

我遇到一个问题,使用与HTTP URL的请求填充端口80相关的
springfox-swagger2 v2.2.0.

是否有禁用端口的生成或基于Spring配置文件以编程方式将端口设置为443?

生成的CURL:

curl -X GET –header“Accept:application / json”“https://test.com:80/api/users/search

最佳答案 我遇到过同样的问题.这是因为Swagger使用Spring Framework中的一个类,它将端口80添加到/ v2 / api-docs json响应中的host属性(Check Swagger2Controller.class).我在spring framework 4.1.4版本中遇到过这个问题.升级到最新版本4.3.2.修复它.

点赞