我在Spring Boot项目中遇到配置JsonDoc的问题。 未检测到jsondoc-ui.html。 当我输入http://localhost:8080/jsondoc时,我收到的空白对象如下:
{"version":null,
"basePath":null,
"apis":{},
"objects":{},
"flows":{},
"global":null,
"playgroundEnabled":true,
"displayMethodAs":"URI"}
这是我的配置:
application.properties
jsondoc.version=1.0
jsondoc.basePath=http://localhost:8080
jsondoc.packages[0]=controller
jsondoc.packages[1]=domain
####optional configuration
jsondoc.playgroundEnabled=false
jsondoc.displayMethodAs=URI
我的pom.xml
<!--JSON DOC-->
<dependency>
<groupId>org.jsondoc</groupId>
<artifactId>spring-boot-starter-jsondoc</artifactId>
<version>1.2.16</version>
</dependency>
<dependency>
<groupId>org.jsondoc</groupId>
<artifactId>jsondoc-ui-webjar</artifactId>
<version>1.2.16</version>
</dependency>
并在我的配置类
中使用annotaion @EnableJSONDoc