Re: [Resteasy-users] Right time to use @Encoded?

2013-12-11 Thread Bill Burke
Not sure you understand what @Encoded does. It just means you want the RAW parameter. For example /Hello World must be encoded as /Hello%20World So, if you had /{text} @PathParam(text) String decoded, @Encoded @PathParam(text) String encoded decoded = Hello World encoded = Hello%20World

[Resteasy-users] 3.0.6 released

2013-12-11 Thread Bill Burke
Resteasy 3.0.6.Final has been released today. This is a maintenance release. Netty 4 JAX-RS 2.0 Async APIs actually work now! As usual, check out http://jboss.org/resteasy for how to download the distro and view documentation. -- Bill Burke JBoss, a division of Red Hat