Re: [Resteasy-users] StringParameterUnmarshaller Issues

2014-04-29 Thread Bill Burke
On 4/29/2014 11:29 AM, Bill Burke wrote: > SimpleDateFormat is not threadsafe. Read the Javadoc. > BTW, unfortunately, I did not know SimpleDateFormat was not threadsafe and it is used as a singleton in 2.3.x codebase in a few places. This has been fixed in 3.x. -- Bill Burke JBoss, a div

Re: [Resteasy-users] StringParameterUnmarshaller Issues

2014-04-29 Thread Bill Burke
SimpleDateFormat is not threadsafe. Read the Javadoc. For StringParamUnmarshaller, Resteasy stores them in a map keyed by classname of the generic type: For example: class FooUnmarshaller implements StringParamUnmarshaller {} FooUnmarshaller will be used to unmarshall Foo classes only. No s