https://github.com/springfox/springfox-swagger-ui-rfc6570
Alternate swagger-ui web jar which supports the incubating rfc6570 feature
https://github.com/springfox/springfox-swagger-ui-rfc6570
Last synced: 9 months ago
JSON representation
Alternate swagger-ui web jar which supports the incubating rfc6570 feature
- Host: GitHub
- URL: https://github.com/springfox/springfox-swagger-ui-rfc6570
- Owner: springfox
- License: apache-2.0
- Created: 2016-01-04T16:37:14.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-25T21:00:26.000Z (over 9 years ago)
- Last Synced: 2025-04-04T23:51:10.600Z (about 1 year ago)
- Language: JavaScript
- Size: 86.9 KB
- Stars: 13
- Watchers: 4
- Forks: 3
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
##### springfox-swagger-ui
- Creates a webjar containing the swagger-ui static content.
- Adds a JSON endpoint `/swagger-resources` which lists all of the swagger resources and versions configured for a given
application.
Prior versions of this library included sdoc.jsp which caused all kinds of problems on
spring boot. This latest version now bundles a html (swagger-ui.html) instead.
The swagger ui version is specified in ./build.gradle where `swaggerUiVersion` is a git tag on the [swagger-ui repo]
(https://github.com/swagger-api/swagger-ui).
- All content is served from a webjar convention, relative url taking the following form:
`webjars/${project.name}/${project.version}` e.g: `/webjars/springfox-swagger-ui//swagger-ui
.html`
By default Spring Boot has sensible defaults for serving content from webjars. To configure vanilla spring web mvc apps to serve
webjar content see the [webjar documentation] (http://www.webjars.org/documentation#springmvc)
##### Releasing swagger-ui
```bash
./gradlew clean build bintrayUpload -PbintrayUsername= -PbintrayApiKey= -PossUser= -PossPassword=
```