The AIAA (American Institute of Aeronautics and Astronautics) paper [.pdf] plan to use java (For cost reasons) for safety-critical missions. The first fully time-deterministic and open-source library for Java: Javolution is ready to fight!
Javolution real-time goals are simple: To make your application faster and more time predictable!
That being accomplished through:
Top 10 Reason to make a try:
StringBuilder, ArrayList or HashMap).
O[Log(n)] instead of O[n] for standard
StringBuffer/StringBuilder).
Here is a How to since it take me a very long time to install something which should have been trivial....
For the benefit of the community, I am publishing it here on my free time :-) ... Enjoy...
Apache Axis and Apache Axis C++ are implementation of the SOAP ("Simple Object Access Protocol") submission to W3C. From the W3C draft specification:
SOAP is a lightweight protocol for exchanging structured information in a decentralized, distributed environment. It is an XML based protocol that consists of three parts: an envelope that defines a framework for describing what is in a message and how to process it, a set of encoding rules for expressing instances of application-defined datatypes, and a convention for representing remote procedure calls and responses.
Axis C/C++ (Axis CPP) is a non-Java implementation of Axis. At its core Axis CPP has a C++ runtime engine. The provided tooling allows you to create C++ client-side stubs and server-side skeletons. The server skeletons can be deployed to either a full Apache web server using the supplied apache module or a "simple_axis_server" - which is a simple HTTP listener (designed to help you test your services).
Read more: Playing with Axis C++ and Apache 1.3.1
iText is a library that allows you to generate PDF files on the fly. The iText classes are very useful for people who need to generate read-only, platform independent documents containing text, lists, tables and images. The library is especially useful in combination with Java(TM) technology-based Servlets: The look and feel of HTML is browser dependent; with iText and PDF you can control exactly how your servlet's output will look.
iText requires JDK 1.2. It's available for free under a multiple license: MPL and LGPL. It also have a complete list of features (but outdated), and let you perform operation on already created pdf (concat, split, add pages, add an overlay and so on...)
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
Maven is a software tool for Java project management and build automation created by Jason van Zyl in 2002. It is similar in functionality to the Apache Ant tool (and to a lesser extent, PHP's PEAR and Perl's CPAN), but has a simpler build configuration model, based on an XML format. Maven is hosted by the Apache Software Foundation, where it was formerly part of the Jakarta Project.
Maven uses a construct known as a Project Object Model (POM) to describe the software project being built, its dependencies on other external modules and components, and the build order. It comes with pre-defined targets for performing certain well defined tasks such as compilation of code and its packaging.
A key feature of Maven is that it is network-ready. The core engine can dynamically download plug-ins from a repository, the same repository that provides access to many versions of different Open Source Java projects, from Apache and other organisations and developers. This repository and its reorganized successor, the Maven 2 repository, strives to be the de facto distribution mechanism for Java applications, but its adoption has been slow. Maven provides built in support not just for retrieving files from this repository, but to upload artifacts at the end of the build. A local cache of downloaded artifacts acts as the primary means of synchronizing the output of projects on a local system.
Maven is based on a plugin-based architecture that allows it to make use of any application controllable through standard input. Theoretically, this would allow anyone to write plugins to interface with build tools (compilers, unit test tools, etc.) for any other language. In reality, support and use for languages other than Java has been minimal. Currently a plugin for the .Net framework exists and is maintained, and a C/C++ native plugin was at one time maintained for Maven 1.Privacy Statement | Copyright Notice | Licenses
© 1999-2012 Waltercedric.com. Designed by Cédric Walter. Sitemap
Reproduction without explicit permission is prohibited. All Rights Reserved.
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.