如何在jersey + spring-boot Web应用程序中启用swagger

时间:2016-03-31 02:00:05

标签: spring-boot jersey swagger

我在我的基于spring-boot + jersey的web应用程序中添加了以下swagger依赖项。

    compile('io.springfox:springfox-swagger2:'+springfoxSwaggerVersion)
compile('io.springfox:springfox-petstore:'+springfoxSwaggerVersion)
compile('io.springfox:springfox-swagger-ui:'+springfoxSwaggerVersion)
compile('io.swagger:swagger-jersey2-jaxrs:1.5.8')
compile('io.swagger:swagger-annotations:1.5.8')
compile('org.apache.httpcomponents:httpclient:4.5.1')

启动应用程序时,我能够看到以下输出。但我无法访问链接http://localhost:8080/swagger-ui.html。我知道如果我使用的是spring-mvc,它可以正常工作,但不适用于球衣。球衣有什么打破它吗?我该如何解决?我还想念这里还有什么?

2016-03-31 09:39:09.102  INFO 83543 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/swagger-ui.html] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]

0 个答案:

没有答案