0

是否可以设置 jboss 来显示我调用了哪个 URL,我正在调用哪个类,以及我发送给它的参数是什么?

我将我的类 log4j.xml 设置为 TRACE,但这可能不是要更改的正确 .xml 文件。它似乎没有做任何事情。也许我没有看正确的日志?我只看到 boot、errFile 和 server.log。

谢谢你的帮助。

4

1 回答 1

1

您可能想要启用RequestDumper.

在 Jboss 4.xx 中可以在文件中找到

.../server/[YOUR_CONFIG]/deploy/jboss-web.deployer/server.xml

    <!-- Uncomment to enable request dumper. This Valve "logs interesting 
         contents from the specified Request (before processing) and the 
         corresponding Response (after processing). It is especially useful 
         in debugging problems related to headers and cookies."
    -->

    <Valve className="org.apache.catalina.valves.RequestDumperValve" />
于 2012-09-27T14:58:12.367 回答