I was using paramConverter provider in resteasy for handling complex string parameters. I have registered it in web.xml under resteasy.providers context and annotated it with @Provider. It was working fine until i started to use interceptors. After then it started ignoring the providers and now even i hace removed the interceptor class it is not registering providers. Does anyone has any clue?? I am using resteasy-jaxrs-3.0-beta-6 version and my web.xml looks like -
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<display-name>RestEasy Simple Service</display-name>
<description>RestEasy Simple Service</description>
<listener>
<listener-class>
org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap
</listener-class>
</listener>
<servlet>
<servlet-name>Resteasy</servlet-name>
<servlet-class>
org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher
</servlet-class>
<init-param>
<param-name>javax.ws.rs.Application</param-name>
<param-value>org.jboss.rest.myRESTApplication</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>Resteasy</servlet-name>
<url-pattern>/resteasy/*</url-pattern>
</servlet-mapping>
<context-param>
<param-name>resteasy.servlet.mapping.prefix</param-name>
<param-value>/resteasy</param-value>
</context-param>
<context-param>
<param-name>resteasy.providers</param-name>
<param-value>org.jboss.rest.myProviderXmlJson</param-value>
</context-param>