0

我尝试使用方面向使用 Java EE 和 Spring(核心 + mvc + 安全性...)开发的 Web 应用程序添加自动日志记录。依赖项由 maven 管理,应用程序服务器是 Glassfish 服务器。方面部分似乎工作,但日志文件没有得到我通过方面发送的日志。

我在 web.xml 中设置了日志记录配置,并添加了以下内容:

<listener id="myLogger">
    <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>

属性文件如下(它可以工作,因为日志文件在我的系统文件夹中创建得很好):

# Root logger option
log4j.rootLogger=INFO, file
log4j.rootLogger=WARN, file
log4j.rootLogger=ERROR, file
# Direct log messages to a log file
log4j.appender.file=org.apache.log4j.RollingFileAppender
log4j.appender.file.File=C:\\Users\\chaese\\Documents\\Dev\\LogsMEANS\\logging.log
log4j.appender.file.MaxFileSize=1MB
log4j.appender.file.MaxBackupIndex=1
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n

我还配置了一个方面(使用 AspectJ),以便在调用以“get”开头的函数时记录所有信息。这是这方面的课程:

import org.apache.log4j.Logger;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

@Aspect
public class PropertyChangeTracker {

private Logger logger = Logger.getLogger(PropertyChangeTracker.getClass());

@Before("execution(String get*(..))")
public void trackCalls(){
    logger.info("controller called !!");
}
}

aspect-config.xml 中的配置:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:p="http://www.springframework.org/schema/p"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans 
   http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
   http://www.springframework.org/schema/aop 
   http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
   http://www.springframework.org/schema/context 
   http://www.springframework.org/schema/context/spring-context.xsd">

<bean id="propertyChangeTracker" class="services.aspects.PropertyChangeTracker">   </bean>

<aop:aspectj-autoproxy>
    <aop:include name="propertyChangeTracker"/>
</aop:aspectj-autoproxy>
</beans>

我在调试模式下对此进行了测试,我的“trackCalls”方法被调用没有任何问题,但没有信息被记录到日志文件中。我感觉我的应用程序中有两个不同的记录器,而 PropertyChangeTracker 类使用的一个不是我想要的......你看到我在哪里设置了错误吗?

在此先感谢您的帮助!

4

1 回答 1

1

我不确定,但您的 log4j 配置看起来很可疑。尝试仅在 log4j.properties 中添加 log4j.rootLogger=INFO 文件。

于 2013-01-28T15:34:15.753 回答