为什么状态为500时,球衣没有错误日志? [英] Why does jersey have no error log when the status is 500?

查看:53
本文介绍了为什么状态为500时,球衣没有错误日志?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的web.xml:

This is my web.xml:

<servlet>
  <servlet-name>Jersey REST Service</servlet-name>
  <servlet-class>
    org.glassfish.jersey.servlet.ServletContainer
  </servlet-class>
  <init-param>
    <param-name>jersey.config.server.provider.packages</param-name>
    <param-value>rest</param-value>
  </init-param>
  <init-param>
    <param-name>jersey.config.server.provider.classnames</param-name>
    <param-value>org.glassfish.jersey.filter.LoggingFilter</param-value>
  </init-param>
  <load-on-startup>1</load-on-startup>
</servlet>

这是我的资源类:

@Path("/main")
public class MainResource {

    @XmlRootElement
    public class Planet {
        public int id;
        public String name;
        public double radius;
    }

    @GET
    @Produces(MediaType.APPLICATION_XML)
    public Planet getPlanet() {
        final Planet planet = new Planet();

        planet.id = 1;
        planet.name = "Earth";
        planet.radius = 1.0;

        return planet;
    }
}

当我运行tomcat服务器时,日志如下:

And when I run the tomcat server, the log is like this:

09-Jan-2015 13:19:10.501 INFO [http-apr-8080-exec-8] org.glassfish.jersey.filter.LoggingFilter.log 1 * Server has received a request on thread http-apr-8080-exec-8
1 > GET http://localhost:8080/rest/main
1 > accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
1 > accept-encoding: gzip, deflate, sdch
1 > accept-language: en,zh-CN;q=0.8,zh;q=0.6
1 > connection: keep-alive
1 > cookie: JSESSIONID=69F79D567E7ECA27A129C477B91C7758
1 > host: localhost:8080
1 > user-agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36

09-Jan-2015 13:19:10.597 INFO [http-apr-8080-exec-8] org.glassfish.jersey.filter.LoggingFilter.log 1 * Server responded with a response on thread http-apr-8080-exec-8
1 < 200
1 < Content-Type: application/xml

09-Jan-2015 13:19:10.794 INFO [http-apr-8080-exec-8] org.glassfish.jersey.filter.LoggingFilter.log 2 * Server responded with a response on thread http-apr-8080-exec-8
2 < 500

我想知道为什么它显示500错误,但是我找不到有关异常堆栈的任何错误日志.

I wonder why it shows 500 error, but I cannot find any error log about the exception stack.

请帮助我.

推荐答案

我已解决问题,现在回答自己的问题.

I fixed my issue and I answer my own question now.

首先,如何启用异常跟踪日志记录?

First, how can I enable the exception trace logging?

@Provider
public class ExceptionMapper implements javax.ws.rs.ext.ExceptionMapper<Exception> {
    @Override
    public Response toResponse(Exception exception) {
        exception.printStackTrace();
        return Response.status(500).build();
    }
}

是的,我们应该自己实现ExceptionMapper.

Yes, we should implement an ExceptionMapper on my own.

第二,我的代码有什么错误?

Second, what's the error of my code?

Planet类应该是静态的.

The class Planet should be static.

这篇关于为什么状态为500时,球衣没有错误日志?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆