我在Spring Boot项目中有Swagger库,我使用以下依赖项添加它:
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.7.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.7.0</version>
</dependency>
目前Swagger UI如下图所示: 在Swagger的网站上,我看到了另一种设计,它看起来更好:
如何在项目中添加相同的设计?谢谢!
答案 0 :(得分:0)
为了获得新的Swagger设计,只需将依赖版本从2.7.0更改为2.8.0或更高版本
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.8.0</version>
</dependency>
使用Ctrl-F5刷新浏览器缓存以确保已获取更改。