How to access full Swagger UI on localhost using jhipster? [closed]
up vote
-1
down vote
favorite
•Swagger documentation endpoint for those APIs is at /v2/api-docs, but if you want access to the full Swagger UI, you should use a JHipster gateway, which will serve as an API developer portal
java spring jhipster
New contributor
closed as unclear what you're asking by GBlodgett, Graham, Rob, Devon_C_Miller, Shiladitya Nov 11 at 4:45
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
up vote
-1
down vote
favorite
•Swagger documentation endpoint for those APIs is at /v2/api-docs, but if you want access to the full Swagger UI, you should use a JHipster gateway, which will serve as an API developer portal
java spring jhipster
New contributor
closed as unclear what you're asking by GBlodgett, Graham, Rob, Devon_C_Miller, Shiladitya Nov 11 at 4:45
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
•Swagger documentation endpoint for those APIs is at /v2/api-docs, but if you want access to the full Swagger UI, you should use a JHipster gateway, which will serve as an API developer portal
java spring jhipster
New contributor
•Swagger documentation endpoint for those APIs is at /v2/api-docs, but if you want access to the full Swagger UI, you should use a JHipster gateway, which will serve as an API developer portal
java spring jhipster
java spring jhipster
New contributor
New contributor
New contributor
asked Nov 10 at 15:01
Hazem M. Anwar
1
1
New contributor
New contributor
closed as unclear what you're asking by GBlodgett, Graham, Rob, Devon_C_Miller, Shiladitya Nov 11 at 4:45
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
closed as unclear what you're asking by GBlodgett, Graham, Rob, Devon_C_Miller, Shiladitya Nov 11 at 4:45
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
You can access the Swagger docs on a JHipster app by login as an admin and click the "API" link in the admin navbar dropdown.
You can also access it directly using url at http://localhost:8080/#/docs
If you are not able to access swagger ui then make sure that the swagger profile is active.
You can check your configuration at src/main/resources/config/application.yml
spring:
profiles:
active: dev
include: swagger
or
spring:
profiles:
active: dev, swagger
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You can access the Swagger docs on a JHipster app by login as an admin and click the "API" link in the admin navbar dropdown.
You can also access it directly using url at http://localhost:8080/#/docs
If you are not able to access swagger ui then make sure that the swagger profile is active.
You can check your configuration at src/main/resources/config/application.yml
spring:
profiles:
active: dev
include: swagger
or
spring:
profiles:
active: dev, swagger
add a comment |
up vote
0
down vote
You can access the Swagger docs on a JHipster app by login as an admin and click the "API" link in the admin navbar dropdown.
You can also access it directly using url at http://localhost:8080/#/docs
If you are not able to access swagger ui then make sure that the swagger profile is active.
You can check your configuration at src/main/resources/config/application.yml
spring:
profiles:
active: dev
include: swagger
or
spring:
profiles:
active: dev, swagger
add a comment |
up vote
0
down vote
up vote
0
down vote
You can access the Swagger docs on a JHipster app by login as an admin and click the "API" link in the admin navbar dropdown.
You can also access it directly using url at http://localhost:8080/#/docs
If you are not able to access swagger ui then make sure that the swagger profile is active.
You can check your configuration at src/main/resources/config/application.yml
spring:
profiles:
active: dev
include: swagger
or
spring:
profiles:
active: dev, swagger
You can access the Swagger docs on a JHipster app by login as an admin and click the "API" link in the admin navbar dropdown.
You can also access it directly using url at http://localhost:8080/#/docs
If you are not able to access swagger ui then make sure that the swagger profile is active.
You can check your configuration at src/main/resources/config/application.yml
spring:
profiles:
active: dev
include: swagger
or
spring:
profiles:
active: dev, swagger
answered Nov 10 at 15:29
Alien
3,68121022
3,68121022
add a comment |
add a comment |