目前我的异常是记录文本和堆栈跟踪:
throw new RequestValidationException("test exception", parameters, e);
我想在所有方法中收集throws异常的所有参数。
HashMap<String, String> parameters = new HashMap<String, String>();
parameters.put("testparam", message.toString());
throw new RequestValidationException("test exception", parameters, e);
现在我正在使用hashmap。我必须查看每个方法并检查它是否使用参数。这将花费我几天。代码中有成千上万的例外,是否有一种显示值的简单方法?
答案 0 :(得分:2)
您可以使用slf4j-ext记录方法参数。它们以跟踪级别记录。
private static final XLogger xlogger = XLoggerFactory.getXLogger(MyClass.class);
然后您可以在方法的开头和结尾使用,如下所示:
protected void Method1(Message aMessage){
xLogger.entry(aMessage);
...
xLogger.exit();
}