我如何从Kotlin文档解析信息到swagger-ui?

cbeh67ev  于 2022-11-06  发布在  Kotlin
关注(0)|答案(1)|浏览(242)

我需要为swagger-ui解析Kotlin文档(而不是swagger注解)。
我试过了,但没用。
这里是我的springdoc依赖项(springdocVersion =“1.6.6”)。顺便说一下,如果它很重要,我不能使用therapi版本0.13.0。

runtimeOnly("org.springdoc:springdoc-openapi-kotlin:$springdocVersion")
implementation("org.springdoc:springdoc-openapi-ui:$springdocVersion")
implementation("org.springdoc:springdoc-openapi-webflux-ui:$springdocVersion")
implementation("org.springdoc:springdoc-openapi-javadoc:$springdocVersion")
annotationProcessor("com.github.therapi:therapi-runtime-javadoc-scribe:0.12.0")
implementation("com.github.therapi:therapi-runtime-javadoc:0.12.0")
zynd9foi

zynd9foi1#

在我用kapt("com.github.therapi:therapi-runtime-javadoc-scribe:0.12.0")替换了annotationProcessor("com.github.therapi:therapi-runtime-javadoc-scribe:0.12.0")之后,一切都运行得很好!
构建文件的示例可在here中找到

相关问题