我有一个杰克逊提供商,如下所示。
public class JacksonConfig extends JacksonJsonProvider {
@Override
public void writeTo(Object value, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream) throws IOException, WebApplicationException {
System.out.println("Test Success");
}
}
也在我的web.xml中我有以下
<context-param>
<param-name>resteasy.providers</param-name>
<param-value>
com.alcatel.axs.webapps.providers.JacksonConfig
</param-value>
</context-param>
但是,在调用休息服务时,我的提供程序不会被调用。请告诉我这是什么问题。