swagger生成的文件使用神秘的导入

lf5gs5x2  于 2021-06-27  发布在  Java
关注(0)|答案(1)|浏览(404)

我刚刚使用swagger.io和openapi3.0规范生成了代码。它生成的代码无法编译。一旦类有了这个看似至关重要的导入: import springfox.documentation.oas.annotations.EnableOpenApi; 但我有个错误: package springfox.documentation.oas.annotations does not exist 我不知道需要向pom.xml文件添加什么才能使导入工作正常。maven回购https://mvnrepository.com/ 不允许我搜索特定的类,这毫无意义。

inn6fuwd

inn6fuwd1#

我希望你错过了 swagger oas 所以你得到的包不存在依赖错误。下面的maven存储库中提供了swagger oas。

<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-oas</artifactId>
    <version>3.0.0</version>
</dependency>

相关问题