Log4J
这是Spring应用程序中非常易于使用的Log4J功能。以下示例将带您通过简单的步骤来说明Log4J和Spring之间的简单集成。我们假设您已经在计算机上安装了log4J。如果没有,则可以从https://logging.apache.org/下载它,然后将压缩文件解压缩到任何文件夹中。我们将在项目中仅使用log4j-xyzjar。接下来,让我们拥有一个运行良好的Eclipse IDE,并采取以下步骤来使用Spring Web Framework开发基于动态表单的Web应用程序:
- 创建一个名称为SpringExample的项目,并在创建的项目的src文件夹下创建一个包com.jc2182
- 使用“添加外部JAR”选项添加所需的Spring库,如“Spring Hello World示例”一章中所述。
- 使用添加外部JAR在您的项目中也添加log4j库log4j-x.y.z.jar。
- 在com.jc2182包下创建Java类HelloWorld和MainApp。
- 在src文件夹下创建Beans配置文件Beans.xml。
- 在src文件夹下创建log4J配置文件log4j.properties。
- 最后一步是创建所有Java文件和Bean配置文件的内容,然后按以下说明运行应用程序。
这是HelloWorld.java文件的内容
package com.jc2182;
public class HelloWorld {
private String message;
public void setMessage(String message){
this.message = message;
}
public void getMessage() {
System.out.println("Your Message : " + message);
}
}
以下是第二个文件MainApp.java的内容
package com.jc2182;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.apache.log4j.Logger;
public class MainApp {
//static Logger log = Logger.getLogger(MainApp.class.getName());
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
//log.info("Going to create HelloWord Obj");
HelloWorld obj = (HelloWorld) context.getBean("helloWorld");
obj.getMessage();
//log.info("Exiting the program");
}
}
您可以通过类似于生成信息消息的方式来生成调试和错误消息。现在让我们看看Beans.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"
xsi:schemaLocation = "http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean id = "helloWorld" class = "com.jc2182.HelloWorld">
<property name = "message" value = "Hello World!"/>
</bean>
</beans>
以下是log4j.properties的内容,该内容定义了Log4J生成日志消息所需的标准规则
# 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=C:\\log.out
# 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
创建完源和Bean配置文件后,让我们运行该应用程序。如果您的应用程序一切正常,这将在Eclipse控制台中输出以下消息-
Your Message : Hello World!
如果检查C盘下,则应找到包含各种日志消息的日志文件log.out,如下所示-
以下是Spring视图文件student.jsp的内容
<!-- initialization log messages -->
Going to create HelloWord Obj
Returning cached instance of singleton bean 'helloWorld'
Exiting the program