gpt4 book ai didi

java - Jersey json 序列化错误记录在哪里?

转载 作者:行者123 更新时间:2023-12-01 12:22:26 25 4
gpt4 key购买 nike

这个简单的 Jersey 请求失败,服务器错误 500。我很确定它正在序列化。我有另一个对象正在做同样的事情,我在调试器中单步调试并发现某些成员不可序列化。

无论如何,我的问题 - jersey 在哪里记录这些问题的根本原因?他们不会进入 tomcat 日志。当我在调试器中时,它被记录到某些内容,但我很清楚它要去哪里。

@Path("myresource")
public class MyResource {

@GET
@Produces(MediaType.APPLICATION_JSON)
public Map<String, String> getProps() {
Properties props = System.getProperties();
Map<String, String> results = new HashMap<>();

for (Object o : props.keySet()) {
String key = (String) o;
results.put(key, props.getProperty(key));
}
return results;
}

最佳答案

Jersey 使用 JDK 日志记录 API。这是设置教程:http://yatel.kramolis.cz/2013/11/how-to-configure-jdk-logging-for-jersey.html

关于java - Jersey json 序列化错误记录在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26577771/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com