我正在使用针对REST WS的球衣。如何在服务器端启用泽西日志?
长篇故事: 我得到了一个客户端例外 - 但我没有在tomcat日志中看到任何内容[它甚至没有达到我的方法]。由于堆栈跟踪说“toReturnValue”,它确实从服务器获得了一些东西。但我不知道服务器说的是什么。
Exception in thread "main" java.lang.IllegalArgumentException: source parameter must not be null
at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:98)
at com.sun.xml.internal.ws.message.AbstractMessageImpl.readPayloadAsJAXB(AbstractMessageImpl.java:100)
**at com.sun.xml.internal.ws.client.dispatch.JAXBDispatch.toReturnValue(JAXBDispatch.java:74)**
at com.sun.xml.internal.ws.client.dispatch.DispatchImpl.doInvoke(DispatchImpl.java:191)
at com.sun.xml.internal.ws.client.dispatch.DispatchImpl.invoke(DispatchImpl.java:195)
答案 0 :(得分:59)
如果要打开服务器端的日志记录,则需要注册LoggingFilter Jersey filter(在容器端)。
此过滤器将记录请求/响应标头和实体。
以下是您需要添加到ResourceConfig
课程的内容:
@ApplicationPath("/")
public class MyApplication extends ResourceConfig {
public MyApplication() {
// Resources.
packages(MyResource.class.getPackage().getName());
register(LoggingFilter.class);
}
}
请注意,相同的过滤器也适用于客户端。
Client client = Client.create();
client.addFilter(new LoggingFilter());
答案 1 :(得分:25)
泽西岛2已弃用LoggingFilter
,您现在需要使用LoggingFeature
。要与客户端一起使用,您可以使用以下snipette:
this.client = ClientBuilder
.newBuilder()
.property(LoggingFeature.LOGGING_FEATURE_VERBOSITY_CLIENT, LoggingFeature.Verbosity.PAYLOAD_ANY)
.property(LoggingFeature.LOGGING_FEATURE_LOGGER_LEVEL_CLIENT, "WARNING")
.build();
并在服务器端:
ResourceConfig config = new ResourceConfig(HelloWorldResource.class);
config.register(LoggingFeature.class);
答案 2 :(得分:7)
Jersey 2.0使用org.glassfish.jersey.filter.LoggingFilter
您可以在 web.xml
<!-- Register my custom provider (not needed if it's in my.package) AND LoggingFilter. -->
<init-param>
<param-name>jersey.config.server.provider.classnames</param-name>
<param-value>org.glassfish.jersey.filter.LoggingFilter</param-value>
</init-param>
可以找到更多解释here
UPD:
版本 2.23 LoggingFilter
不推荐使用后,应使用LoggingFeature
。
更多信息可以在official documentation
答案 3 :(得分:6)
对于Jersey 1.2,在servlet标记内添加以下条目web.xml
:
<init-param>
<param-name>com.sun.jersey.spi.container.ContainerRequestFilters</param-name>
<param-value>com.sun.jersey.api.container.filter.LoggingFilter</param-value>
</init-param>
答案 4 :(得分:3)
您能否向我们展示您的客户代码并告诉我们该请求?
此异常似乎指向JAXB解组步骤。显然,您从REST API中收到了一些XML,但是没有得到您正在等待的内容。
也许你用于编组/解组的XSD已经过时或者说是完全错误。
也许你正试图从回应中得到错误的实体。
尝试以下步骤并向我们提供有关您的问题的更多详细信息:
使用像Client REST simple这样的REST客户端(Chrome扩展程序)或您的代码:
Builder builder = webResource.path("/yourapi/").accept("application/xml");
// get the client response
ClientResponse response = builder.get(ClientResponse.class);
// log the HTTP Status
logger.log("HTTP Status: " + response.getStatus());
// bypass the jaxb step and get the full response
// MyResource myResource = response.getEntity(MyResource.class);
String myResource = response.getEntity(String.class);
logger.log(myResource);
此测试应该失败(如果我是对的)。