使用JHipster访问Swagger文档

时间:2017-06-06 13:14:05

标签: jhipster

我仅使用jhipster生成了应用服务器。

yo jhipster --skip-client

在访问

时,它已经生成了我需要的所有必要的api调用
http://localhost:8080/swagger-ui/index.html

我以404结束了。我的印象是包含了招摇,但似乎无法访问,尽管可以使用昂首的api端点。

2 个答案:

答案 0 :(得分:8)

你不能因为你只生成其余的api。如果您想查看api-docs,请按照here

提及的说明进行操作

一旦你成功地克隆了所说的repository

打开dist / index.html并将源代码粘贴到那里

http://localhost:8080/v2/api-docs

它应该像这样enter image description here

答案 1 :(得分:0)

只需添加以下依赖项。您在这里缺少依赖性。

<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.5.0</version>
</dependency>