In the previous article to introduce you to the Java log4j Detailed tutorial, this article to introduce the Java Web log4j configuration and the Web project configuration log4j techniques. Please see below for details.
First to provide you with Log4j.jar download: http://logging.apache.org/log4j/1.2/download.html
Jav
When using Maven to build a hadoop application:
Missing artifact log4j: log4j: jar: 1.2.15: Compile
In Pom. XML, the configuration is
The reason is that log4j has changed the protocol in version 1.2.15 and later, which is in conflict with JMS. There are two solutions: Version 1.2.14 and JMS. jar are manually downl
documentation for the relevant features. Information Log4j 2 is now ready to be tested. The API is not compatible with the log4j 1.x, but the Log4j 1.x API can continue to be used through the adapter. Adapters are also available for Commons logging and slf4j. LOG4J 2.x Construction and installation Build Log 4j runs i
Turn from: http://shuiranyue.blog.163.com/blog/static/42199034200810261307771/
log4j Introduction
Simply put, log4j is the API class library that helps developers with log output management. The most important feature of it is
You can configure the file to flexibly set the priority of the log information, the output destination of the log information, and the output format of the log information.
Log4j 2.0 advanced usage in development-SocketAppender remote output (5), log4j configuration detailsLog4j2 Appenders fully consider the possibility of log event output, packaging, and filtering forwarding, including the most basic output to a local file and output to a remote host,The file is encapsulated and injected, and automatically stored according to the log file time point, file size, and other cond
Log4j configuration, log4j
First configure the source file log4j. properties
The following is an important explanation:
Log4j. rootLogger = DEBUG, CONSOLE, FILE ----- configure the root Logger. The first word "DEBUG" after the equal sign indicates the output level (there are five levels of fatal errorwarn info debug.
Details on the use of Log4J log management, which is essential for java Development
I. Preface:Log4j is an open source project and is a widely used logging package written in Java. Due to the outstanding performance of log4j, at the time when log4j was completed, the log4j development organization suggested that sun re
Details on the use of log4j log management, which is essential for Java DevelopmentI. Preface:Log4j is an open source project and is a widely used logging package written in Java. Due to the outstanding performance of log4j, at the time when log4j was completed, the log4j development organization suggested that sun rep
Set the directory by yourself, that is, set through system. setproperty at project startup to implement servletcontextlistener:
Public class log4jlistener implements servletcontextlistener {
Public static final string log4jdirkey = "log4jdir ";
Public void contextdestroyed (servletcontextevent ){
System. getproperties (). Remove (log4jdirkey );
}
Public void contextinitialized (servletcontextevent ){
String log4jdir = servletcontextevent. getservletcontext (). getrealpath ("/");
// System. Out
Log4j-1.2.16.ja environment: myeclipse10 + log4j1.2.16 + jdk1.6
1. Create a Java project named log4jtest.
2. SetLog4j-1.2.16.jar copy to project root directory, right-click Project, properties, Java build path, add jars, selectLog4j-1.2.16.jar
3. InSource codeDirectory to create an XML file: log4j. xml. The configuration starts. The content is as follows:
XML version = "1.0" encoding = "UTF-8"
Create a project:
Preparations for using log4j in log4j,
The first jar package, need to log4j-1.2.11.jar package, import to your own project;
2. Create the log4j. properties file and fill in the corresponding configuration. I have filled in two configurations: Console output and file output.
The configuration is as fol
Logging naturally is very important, but I am afraid to remember slf4j and log4j, such as the configuration of the log framework is very few people, this thing is not difficult, but only after the configuration is rarely to move it, the development of new projects are usually copied from other projects, or reference to the documentNeedless to say, say log4j first, use l
LOG4J is an Apache open source project, through the use of log4j, we can control the log information delivery destination is the console, files, GUI components, even the socket server, NT Event recorder, UNIX syslog daemon, etc. We can also control the output format of each log, and by defining the level of each log information, we can control the log generation process more carefully. Most interesting of a
Log4j notes, log4j Configuration
Log4j notes
I,Overview:
1.Log4j Introduction: Apache open-source project, used to manage and print output log information.
Logger + Appender + Layout
1. Logger: Logger, a program for generating and recording logs
2. Appender: logstore location, console/file/GUI component, etc. A Logg
Dynamic configuration of log4j in Java Web and dynamic log4j in Java Web
Import the jar package of log4j,
Configure the following in web. xml:
Create the file log4j. properties in the WEB-INF
The content is as follows:
log4j.rootLogger=INFO, stdout, logfilelog4j.appender.stdout=org.apache.log4j.ConsoleAppenderlog4j.ap
Log4j 2.0 advanced usage in development-read configuration file (6) and log4j usageIn log4j, the location where log files are stored is not necessarily under src, that is, under the root directory. In this case, we need to solve the problem of loading the configuration file. There are many solutions in log4j1. x. For example, PropertyConfigurator. configure (); a
LOG4J configuration: Instead of using configuration files at all, you can configure the LOG4J environment in your code. However, using a configuration file will make your application more flexible. LOG4J supports two configuration file formats, one in XML format and the properties file (key = value). Log4j has three
1. Obtain log4j. Jar
Download address of log4j.zip: http://labs.mop.com/apache-mirror/logging/log4j/1.2.17/log4j-1.2.17.zip
Decompress log4j.zip to get the log4j-1.2.17.jar
2. Dependency log4j-1.2.17.jar in eclipse
Right-click Project -- Build path -- configure buil
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.