代码生成配合swagger生成

This commit is contained in:
zsz
2021-12-10 21:36:04 +08:00
parent 44ce6774dc
commit 0550225396
4 changed files with 26 additions and 30 deletions

View File

@ -125,6 +125,19 @@
<artifactId>javax.servlet-api</artifactId>
</dependency>
<!-- swagger3-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
</dependency>
<!-- 防止进入swagger页面报类型转换错误排除3.0.0中的引用手动增加1.6.2版本 -->
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
<version>1.6.2</version>
</dependency>
</dependencies>
</project>