从springfox2迁移到SpringFox3.0

5kgi1eie  于 2021-07-03  发布在  Java
关注(0)|答案(0)|浏览(265)

我的springboot应用程序使用springfox2。我试着迁移到springfox3(“io”)。springfox:springfox-boot-starter:3.0.0"). 我跟着台阶走https://springfox.github.io/springfox/docs/current/#example-应用,第2.1.3节。从现有的2.x版本迁移。此外,我还替换了一些不推荐使用的类(例如globalrequestparameters、globalresponses、schma等),但是生成的文档有几个问题。有人有医生或例子吗?谢谢!!
问题:服务器url显示localhost
招摇yaml文件显示

openapi: 3.0.3
info:
  title: api title 
  description: api description
  version: '1'
servers:
  - url: 'http://localhost:8081'
    description: Inferred Url

我希望服务器url是我的api服务器url,而不是localhost。我试过:

return new Docket(DocumentationType.OAS_30)
            .groupName("host url")  //if comment out this, it will retrun localhost
            .host("host url")
            ...

设置groupname后,将返回404错误

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题