我正在尝试调试我的情况,其中简单的ActiveWeb应用程序未在Jetty下运行。它表现得好像没有任何用于请求处理的类并返回错误404。
问题不在于ActiveWeb。这是关于码头。如何找出,有一些Web应用程序,Jetty喜欢注释类并将在HTTP请求上执行它?
目前我已下载Jetty并且可以正常运行。不幸的是,它没有记录。 stdout
或stderr
中没有显示任何内容,当404错误返回时,logs
子目录中没有任何文件显示。
如何在jetty中启用日志记录?
此处的文档http://www.eclipse.org/jetty/documentation/current/configuring-logging.html和此处http://www.eclipse.org/jetty/documentation/current/configuring-jetty-request-logs.html不明确且存在争议。
例如,第一页说Jetty不使用任何Java登录框架,但也需要一个选择一个。第二页提供了一些配置示例,但没有说明应放置此代码的位置。
答案 0 :(得分:26)
文档是正确的,因为术语“Java Logging Framework”通常与现代日志框架相关联,如java.util.logging,slf4j,logback,log4j,commons-logging,logkit等。
这是正确的,Jetty不使用任何这些。
Jetty日志记录优先于标准化日志记录框架中的 ALL 。 (Jetty及其记录层创建于1995年)
这就是Jetty日志记录(以及文档站点上的is documented)在设置和配置方面的作用。
默认行为:
配置:
这可以通过3种不同的方式实现
# 3 different options
-Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.StdErrLog
-Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.Slf4jLog
-Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.JavaUtilLog
jetty-logging.properties
自发现/配置。Example from jetty project itself:
# Configure for System.err output
org.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.StdErrLog
# Configure StdErrLog to log all jetty namespace at default of WARN or above
org.eclipse.jetty.LEVEL=WARN
# Configure StdErrLog to log websocket specific namespace at DEBUG or above
org.eclipse.jetty.websocket.LEVEL=DEBUG
Log.setLog(Logger)
这对使用embedded-jetty
的用户特别有用import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.util.log.StdErrLog;
Log.setLog(new StdErrLog());
建议和注释:
Jetty服务器启动的输出将为您提供有关其正在使用的日志记录实现的提示。
正常/默认行为:
2014-09-11 10:48:38.726:INFO::main: Logging initialized @378ms
2014-09-11 10:48:39.067:INFO:oejdp.ScanningAppProvider:main: Deployment monitor [file:/Users/joakim/Code/Jetty/distros/jetty-distribution-9.2.1.v20140609/demo-base/webapps/] at interval 1
请注意,它的输出中没有命名空间声明或严重缩写的命名空间。这告诉我StdErrLog
正在使用中。
如果正在使用slf4j:
10:50:18.871 [main] INFO org.eclipse.jetty.util.log - Logging initialized @352ms
10:50:19.102 [main] INFO o.e.j.d.p.ScanningAppProvider - Deployment monitor [file:/Users/joakim/Code/Jetty/distros/jetty-distribution-9.2.1.v20140609/demo-base/webapps/] at interval 1
这是slf4j
的默认Console appender输出 - > logback
。这里的总体结构与StdErrLog
产生的结构非常不同,所以我现在可以通过Slf4jLog
实现告诉码头正在发射。
答案 1 :(得分:1)
对于我来说,我已通过遵循文档页面(Default Logging with Jetty’s StdErrLog)中的建议并在start.ini文件中添加以下行来解决了该问题: --module = console-capture
我知道这只是解决您的问题的一种方法,但是对我来说效果很好。重新启动服务后,我已经可以在logs子目录中看到一个日志文件。