Spring和日志记录属性文件

时间:2013-02-28 14:55:18

标签: java spring apache-commons-logging

我正在尝试使用Spring。 Spring的依赖是

所以我在构建路径中添加了commons-logging-1.1.1.jar。一切正常。我得到这样的东西:

Feb 28, 2013 2:40:39 PM org.springframework.context.support.AbstractApplicationContext prepareRefresh
INFO: Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@c63a8af: startup date [Thu Feb 28 14:40:39 GMT 2013]; root of context hierarchy

这一切都很棒,但我不希望这打印到我的标准,我希望它被发送到文件。

DirectoryStructure:

project
  src
    com.myproject.classes
    myspring.xml
    log4j.properties
  test
    com.myproject.classes
  logs
    myproject.log

所以我想将所有日志从标准输出重定向到日志文件。这可能与Spring有关吗?

我使用了此处的属性文件:http://www.tutorialspoint.com/spring/logging_with_log4j.htm, 从哪里得到我的Spring示例。但这似乎没有任何区别。我在那里添加了一些垃圾,看看是否有任何异常被抛出,但没有。我已经尝试将文件移动到不同的目录,但它仍然无效。

这是:

# Define the root logger with appender file
log4j.rootLogger = DEBUG, FILE

# Define the file appender
log4j.appender.FILE=org.apache.log4j.FileAppender
# Set the name of the file
log4j.appender.FILE.File=logs/myproject.log

# Set the immediate flush to true (default)
log4j.appender.FILE.ImmediateFlush=true

# Set the threshold to debug mode
log4j.appender.FILE.Threshold=debug

# Set the append to false, overwrite
log4j.appender.FILE.Append=false

# Define the layout for file appender
log4j.appender.FILE.layout=org.apache.log4j.PatternLayout
log4j.appender.FILE.layout.conversionPattern=%m%n

有人有任何想法吗?

提前致谢。