Dropwizard 0.8 migration problem
Intro
My current setup in Dropwizard 0.7.1 is to serve static content in my root ( / ) and my API under /api
This does not seem to work in 0.8.0-rc1
Usage
- run this program (see running below)
- You should see the text "Hello World!" and "Hello, successful Dropwizard User!"
- edit pom.xml, line 22 from 0.7.1 to 0.8.0-rc1
- run the program again, it will probably not work due to 2 resources being mapped to root
Running
- mvn clean package && java -jar target/dropwizard-1.0-SNAPSHOT.jar server target/classes/hello-world.yml
- And go to Main page