https://github.com/fbiville/springboot_issue_2833
https://github.com/fbiville/springboot_issue_2833
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/fbiville/springboot_issue_2833
- Owner: fbiville
- License: wtfpl
- Created: 2015-04-16T13:13:09.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-16T13:13:23.000Z (about 11 years ago)
- Last Synced: 2025-06-22T06:05:08.262Z (about 1 year ago)
- Language: Java
- Size: 97.7 KB
- Stars: 0
- Watchers: 2
- 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
```