Hi Paul.
I am annotating the class with '_at_Provider', and am using
com.sun.jersey.spi.spring.container.servlet.SpringServlet to setup
Jersey in my web.xml...
<servlet>
<servlet-name>jersey spring</servlet-name>
<servlet-class>
com.sun.jersey.spi.spring.container.servlet.SpringServlet
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>jersey spring</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
I am using auto-wiring (by name) to pick up my resource class, which
is marked with a '_at_Service' annotation:
<context:component-scan base-
package="com.mycompany.myproject.resource"/>
Thanks in advance for your help,
regards,
-- Ross