Framework may refer to: [http://en.wikipedia.org/wiki/Framework]
Log4J: A logging framework for J2EE
Log4j homepage: http://jakarta.apache.org/log4j/
Reference book on log4j:
![]() |
The Complete Log4j Manual by Ceki Gulcu Edition: Paperback |
Introduction
Log4j is an open source tool (OSS) developed for inserting logs statements into your application and was developed by people at Apache fundation. It's speed and flexibility allows log statements to remain in shipped code while giving the user the ability to enable logging at runtime without modifying any of the application binary. All of this while not incurring a high performance cost/loss.
Requirements
Why inserting log statement or rely on this (old) technology?
| Advantages | Drawbacks |
| It offers several advantages. It provides precise context about a run of the application. Once inserted into the code:
|
But
|
Why choosing Log4J? (From apache.org)
Log4j concepts
| Logger | Logger are responsible for handling the majority of log operations. The logger is the core component of the logging process. |
| Levels | Log4j by default can log messages with five priority levels (not including custom Levels). More can be defined by subclassing, but it is not recommended. debug to write debugging messages which should not be printed when the application is in production. fatal for critical messages, after logging of which the application quits abnormally A logger will only output messages that are of a level greater than or equal to it. If the level of a logger is not set it will inherit the level of the closest ancestor. So if a logger is created in the package com.waltercedric.account and no level is set for it, it will inherit the level of the logger created in com.waltercedric. If no logger was created in com.waltercedric., the logger created in com.waltercedric.balance will inherit the level of the root logger, the root logger is always instantiated and available. |
| Appender | Appender
The Appenders available are ( from the log4j API)
One may also implement the Appender interface to create ones own ways of outputting log statements. |
| Layout | Layout:
There are three types of Layout available:
|
Using Log4j in your code
It is not recommended to use log4j api directly, since who knows if a better logging framework won't do better in the future or if log4j won't modify its api's. The main idea is that when you aquire a 3rd party component, is to build a wrapper around it. It is even better if the wrapper contains an abstract factory: maybe in some case you wil have to use different class of logging (because of performance, licence...)
| A simple log4j wrapper |
| Import com.waltercedric.LogWrapper; public LogWrapper { ... |
| Using your newly created wrapper |
| Import com.waltercedric.LogWrapper; public void init() throws com.waltercedric.applicationException { LogWrapper logger = new LogWrapper(Account.class); |
Log4j Guidelines
The FAQ of log4J is a must to read, here are the most important points:
| public class Mamals { protected static LoggerWrapper logger = LogFactory.getLog(Mamals.class); ... } |
| and use it in all children |
| public class Human extends Mamals {
public Human() { } |
| l.debug("Cash balance is " + cashvalue); |
| use instead |
| if(myLogger.isDebugEnabled()) { myLogger.debug("Cash balance is " + cashBalance.toXML()); } |
- It is very simple to implement.
- It is very simple to explain to new developers.
- It automatically mirrors your application's own modular design.
- It can be further refined at will.
- Printing the logger automatically gives information on the locality of the log statement.
However, this is not the only way for naming loggers. A common alternative is to name loggers by functional areas. For example, the "database" logger, "RMI" logger, "security" logger, or the "XML" logger. You are totally free in choosing the names of your loggers. The log4j package merely allows you to manage your names in a hierarchy. However, it is your responsibility to define this hierarchy. Note by naming loggers by locality one tends to name things by functionality, since in most cases the locality relates closely to functionality.
Remote logging over TCP
Read carefully: http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/net/SocketAppender.html and
http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/net/SocketHubAppender.html
Starting the server .Chainsaw
Chainsaw is a graphical logging client, where you can see, sort and filter logs data.
Documentation can be read here: http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/chainsaw/package-summary.html and it is a part of log4j.jar
| Starting chainsaw |
| c:jdk1.4.2binjava org.apache.log4j.chainsaw.Main "chainsaw.port", "5000" |
| Example of TCP appender in log4j.xml |
| log4j.appender.remote =org.apache.log4j.net.SocketAppender log4j.appender. remote.RemoteHost=localhost log4j.appender. remote.Port=5000 log4j.appender. remote.LocationInfo=true |
On the server side (where your application create logs), you will need to run log4j's SocketServer class. You can create a configuration file with configuration information similar to the following: The whole applcation is in DEBUG mode
| Example of socketserver.properties |
| log4j.rootCategory=DEBUG,log1 ############################ # log1 is set to be a file log4j.appender.log1=org.apache.log4j.RollingFileAppender log4j.appender.log1.MaxFileSize=100KB log4j.appender.log1.MaxBackupIndex=1 log4j.appender.log1.File=c://logs.log log4j.appender.log1.append = true log4j.appender.log1.layout=org.apache.log4j.PatternLayout log4j.appender.log1.layout.ConversionPattern=%p %t %c - %m%n |
| Start the server |
| java org.apache.log4j.net.SocketServer 5000 C:socketserver.properties C:temp org.apache.log4j.net.SocketServer "5000", "C:socketserver.properties", "C:temp" |
Start your application, without doing any change in your code or recompiling it, you can now log data remotely!
Configuring log4j
Location of configuration file
The configuration files of log4j must be in classpath, if more than one are in classpath, the first found will be used. Log4j require to have a compatible parser in classpath in order to read the configuration file. As default, Logj use Crimson.jar
Location of DTD
The DTD is needed in order to initialize log4j, 2 solutions are available:
| Public DTD, the file must be on internet or on network | System path, but with a fix path (URI) |
"http://www.waltercedric.com/log4j.dtd"> |
Extending log4j
Defining your application specific loggers, appenders and layouts
You can look at the Log4j API to see how to implement a logger, appender and layout.
Conclusions
One of the strength of log4j is that is do not require to recompile the java code to binary classes to change considerably the ouput amount in logs. You can add logging statements in your code, and without changing the code shipped, change at runtime the amount of log output. Thus the major behaviour logging strategies are done in this file (it can be a properties file or a XML file). You should store this file in the classpath of your application.
Annexes
Example of configuration files:
| Example of log4j.xml |
| Example of log4j.properties |
| ########################################################################### # # log4Java properties # # Documentation can be found at http://jakarta.apache.org/log4j/docs/api/index.html # There is no other documentation except forum, a commercial book is due (oreilly) # # To permit reloading during runtime, the LogDecorator will test each 60s if the file has changed # and update configuration of log4j if needed # # Ascending prioriy INFO < WARNING < DEBUG < ERROR < FATAL # log visible only if current log level >= defined level # # current layout can be: DateLayout, HTMLLayout, PatternLayout, SimpleLayout, XMLLayout # ########################################################################### # Set root logger level to [FATAL|ERROR|WARN|INFO|DEBUG], and provide default appender log4j.rootLogger=DEBUG, stdout ############################ # define category (and their level [INHERITED|FATAL|ERROR|WARN|INFO|DEBUG] and appender) # category should be fully qualified class name or incomplete package name # Note that you inherit from the root logger otherwise specified (set addtivity flag) # # additivity= true (default) all request will also be forwarded to the hierarchy # -> log twice if the same appender is already in the hierarchy # additivity= false do not forward to ancestor appenders # # INHERITED can be optionally specified which means that named category should inherit # its priority from the category hierarchy. If you add the flag additivity to false, # you do not inherit of appender ## log4j.category.com.waltercedric.account=INHERIT, log1 log4j.additivity.com.waltercedric.account=false log4j.category.com.waltercedric=DEBUG, log1 ######################################################## # You Can defined as many appender as you want ######################################################## ############################ # stdout is set to be a ConsoleAppender. ## log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=org.apache.log4j.PatternLayout #see http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/PatternLayout.html log4j.appender.stdout.layout.ConversionPattern=%d %r [%t] %-5p %c - %m%n ################################## # log1 is set to be a file by date log4j.appender.log1=org.apache.log4j.DailyRollingFileAppender #rollover each day at midnight, see DailyRollingFileAppender object log4j.appender.log1.DatePattern='.'yyyy-MM- dd #by size ##log4j.appender.log1=org.apache.log4j.RollingFileAppender ##log4j.appender.log1.MaxFileSize=100KB ##log4j.appender.log1.MaxBackupIndex=1 #/WEB-INF/conf/Log4j.properties log4j.appender.log1.File=c://VirtualTransport.log log4j.appender.log1.append = true log4j.appender.log1.layout=org.apache.log4j.PatternLayout #see http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/PatternLayout.html #-4r [%t] %-5p %c %x - %m%n lead to 331 [main] ERROR com.waltercedric.account - classCastexception--> log4j.appender.log1.layout.ConversionPattern=%p %t %c - %m%n ############################ # eMail logging # # SMTPAppender will store all the logging events on an # internal cache and it will send all the messages when # the TriggeringEventEvaluator you set with the # setEvaluatorMethod or the constructor parameter return true. # By default the evaluator is set with an instance of # DefaultEvaluator wich is a package-private class # defined in the same compilation unit of SMTPAppender. # This evaluator will return true only when the logging # event has a priority greater or equal than ERROR. ## log4j.appender.email=org.apache.log4j.net.SMTPAppender log4j.appender.email.Threshold=FATAL log4j.appender.email.SMTPHost=XXX.XXX.XXX.XXX log4j.appender.email.To= This email address is being protected from spambots. You need JavaScript enabled to view it. log4j.appender.email.From= This email address is being protected from spambots. You need JavaScript enabled to view it. log4j.appender.email.Subject=A Fatal error has occured in your application log4j.appender.email.BufferSize=1 log4j.appender.email.layout=org.apache.log4j.PatternLayout #see http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/PatternLayout.html log4j.appender.email.ConversionPattern=%d{ABSOLUTE} (%F:%L) - %m%n ############################ # remote socket server logging # # The SocketAppender has the following properties: # please read: http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/net/SocketAppender.html # # If you want to have a server that listen, you can start the following utilities Chainsaw # (swing gui) read how at http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/chainsaw/package-summary.html # Chainsaw is a particular server! ## log4j.appender.CHAINSAW_CLIENT=org.apache.log4j.net.SocketAppender log4j.appender.CHAINSAW_CLIENT.RemoteHost=localhost log4j.appender.CHAINSAW_CLIENT.Port=5000 log4j.appender.CHAINSAW_CLIENT.LocationInfo=true |
Resources
Following the post about Deploy to Tomcat 6 using Maven, here is a ready to use example with the main differences explained in the table below
| Tomcat 7 | Tomcat 6 | |
| containerId | <containerId>tomcat7x</containerId> | <containerId>tomcat6x</containerId> |
| Url of Tomcat manager | <cargo.remote.uri> | <cargo.tomcat.manager.url> |
| example | http://host..com/manager/text/ | http://host..com/manager/ |
| tomcat-users.xml |
<tomcat-users> |
<tomcat-users> |
And finally a snippet of an Apache Maven pom.xml ready to use in a profile, so you can reuse this profile like a method call
<profile>
<id>deployTomcat</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<wait>true</wait>
<container>
<containerId>tomcat7x</containerId>
<type>remote</type>
</container>
<configuration>
<type>runtime</type>
<properties>
<cargo.remote.uri>
${tomcat.url}
</cargo.remote.uri>
<cargo.remote.username>
${tomcat.user}
</cargo.remote.username>
<cargo.remote.password>
${tomcat.pwd}
</cargo.remote.password>
</properties>
</configuration>
<deployer>
<type>remote</type>
<deployables>
<deployable>
<groupId>${deploy.groupid}</groupId>
<artifactId>${deploy.artifactid}</artifactId>
<type>war</type>
<properties>
<context>${deploy.context}</context>
</properties>
</deployable>
</deployables>
</deployer>
</configuration>
<executions>
<execution>
<id>verify-deploy</id>
<phase>pre-integration-test</phase>
<goals>
<goal>deployer-undeploy</goal>
<goal>deployer-deploy</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Place as many profiles as you have machine to deploy in settings.xml and declare some variables as properties, as shown below:
<profile>
<id>serverA</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<tomcat.url>http://host.com/manager/text</tomcat.url>
<tomcat.user>admin</tomcat.user>
<tomcat.pwd>admin</tomcat.pwd>
<!-- these properties must be defined
as system property or -D -->
<!-- - deployable.artifactid:
artifactId of web application to be deployed -->
<!-- - deployable.context: web context name -->
</properties>
</profile>
So you can run, and traget multiple host by just exchanging the name of the profile serverA to something else.
mvn integration-test –PdeployTomcat,serverA –Ddeployable.artifactid=demo -Ddeploy.groupid=com.mycompany –Ddeployable.context=showcase
In which order are Apache Maven profiles executed? are Apache Maven profiles ordered? how can you insured that Apache Maven profiles are activated in the right order?
You normally don’t end up with these questions, issues may only appear if
The use case behind this article is very simple, as I have a a continuous build were:
All these steps are done using several Apache Maven pom profiles.
As it is a bit complicated to explain, lets first refresh some Apache Maven concepts
Read more: Apache Maven profiles order in multi modules projects
![]()
Got this email from Cyprian Sniegota, he did develop a Maven Archetype for easing development of Joomla extensions. His archetype currently support the creation of a skeleton for components, modules, plugins and templates.
I noticed some time ago that you described combination of Joomla! and Maven. Few weeks ago i wrote joomla-maven-plugin with skeleton projects (sources: bitbucket.org/deviapps) based on php-maven.org work.
Here is short description http://deviapps.com/create-joomla-extension-with-maven and 5 min video (in Polish so far) http://www.youtube.com/watch?v=aE8w9EZciTg
I hope you will be interested.
Thanks to him for having written this project. I will also try to Maven-ize what Joomla has done with Ant in the future (I prefer now crystal clear software lifecycle )

I was getting mad because jetty was refusing to redeploy my static files (xhtml, css) in Eclipse until I find the reason
The Jetty Web Server provides a HTTP server and Servlet container capable of serving static and dynamic contend either from a standalone or embedded instantiations.
Jetty buffers static content for webapps such as html files, css files, images etc and uses memory mapped files to do this if the NIO connectors are being used. The problem is that on Windows, memory mapping a file causes the file to be locked, so that the file cannot be updated or replaced. This means that effectively you have to stop Jetty in order to update a file.
To fix this, add a line with
org.mortbay.jetty maven-jetty-plugin 6.1.5 ... src/main/resources/webdefault.xml
The default webdefault.xml file is found in the lib/jetty.jar at org/mortbay/jetty/webapp/webdefault.xml. Extract it to a convenient disk location and edit it to change useFileMappedBuffer to false:
useFileMappedBuffer false
Copy the changed file into src/main/resources/ of your project.
The problem is explained more in Jetty's documentation.
Maven clearly differentiate "productive code" in each module src/main/* from unit test code in src/test/*.
In a typical multi-module projects like the one below:
componentA | |-moduleA | /src/main/java | /src/main/resources | /src/test/java | /src/test/resources |-moduleB | /src/main/java | /src/main/resources | /src/test/java | /src/test/resources
Note1: Eclipse do not support multi module project as only one level of code sharing is allowed. So we have
3 eclipse projects/maven projects with a pom.xml:
Note2: eclipse has only one Class Loader, meaning that code in /src/main/java and /src/test/java is also exported
as dependencies between modules, while in Maven, code is not shared!
So as default by adding a dependencies in moduleB/pom.xml to moduleA, you'll only inherit moduleA src/main/java
and src/main/resources
Read more: Maven reusing test classes across multi modules projects
I just activated the mambots Geshi (standard in Mambo 4.5.2 ) on my Homepage, now all code in my pages (between <pre> and </pre> ) will be automaticaly highlighted and colored. More than 38 languages are now supported on my homepage!
actionscript - ada - apache - asm - asp - bash - c - c_mac - caddcl - cadlisp - cpp - csharp - css - delphi - html4strict - java - javascript - lisp - lua - mpasm - nsis - objc - oobas - oracle8 - pascal - perl - php-brief - php - python - qbasic - smarty - sql - vb - vbnet - visualfoxpro - xml
I will post later post an update for Mambo 4.5.2, instead of Geshi 1.0.4 You will soon be able to use Geshi 1.0.7 and an extended Mambot for Your personal use.
Enjoy ;-)
private long startStatistics() {
long before = System.currentTimeMillis();
if (logger.isDebugEnabled()) {
logger.debug("Start conversion " );
}
return before;
}
Privacy Statement | Copyright Notice | Licenses
© 1999-2012 Waltercedric.com. Designed by Cédric Walter. Sitemap
Reproduction without explicit permission is prohibited. All Rights Reserved. All photos remain copyright © their rightful owners. No copyright infringement is intended.
Disclaimer: The editor(s) reserve the right to edit any comments that are found to be abusive, offensive, contain profanity, serves as spam, is largely self-promotional, or displaying attempts to harbour irrelevant text links for any purpose.