Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fbiville/springboot_issue_2833
https://github.com/fbiville/springboot_issue_2833
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fbiville/springboot_issue_2833
- Owner: fbiville
- License: wtfpl
- Created: 2015-04-16T13:13:09.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-16T13:13:23.000Z (over 9 years ago)
- Last Synced: 2024-10-09T07:23:06.258Z (about 1 month ago)
- Language: Java
- Size: 97.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Issue 2833 with Spring Boot
## Build & run
```shell
$> mvn
```## Check
```shell
# sanity check with Jersey - 200 OK
$> curl -I http://localhost:8080/api/hello
# static file in src/main/webapp - 200 OK
# thanks to JerseyConfig.java & application.properties
$> curl -I http://localhost:8080/static.html
# generated file in war exploded dir - 404 Not Found :(
$> curl -I http://localhost:8080/index.html
```