play-jaxrs
play-jaxrs copied to clipboard
a jax-rs router plugin for play java apps
for sure there are scala ways to do that stuff e.g. the routers file. But that does not mean the scala way is the best way. I don't want to...
Due to API change, the current code does not compile with Play 2.2.0
I'm trying to use @QueryParam annotation for integer type for example, and get a cast exception. ``` public Result index(@QueryParam("id") Option idParam){ Integer id = idParam.get(); // here will throw...