log4j Tutorials
Log4j is an OpenSource logging API for Java. This logging API, currently in version 1.2.8, became so popular that it has been ported to other languages such as C, C++, Python, and even C# to provide logging framework for these languages.
created by syam1224 on 2008-03-27 12:54:48
|
|
|
Apache Ant Tutorials
Ant is a platform-independent scripting tool that lets you construct your build scripts in much the same fashion as the \"make\" tool in C or C++. You can use a large number of built-in tasks in Ant without any customization.
created by syam1224 on 2008-03-27 03:35:00
|
|
|
JSF Tutorials
JavaServer Faces technology is a server-side user interface component framework for Java technology-based web applications.
The main components of JavaServer Faces technology are as follows:
* An API for representing UI components and managing their state; handling events, server-side validation, and data conversion; defining page navigation; supporting internationalization and accessibility; and providing extensibility for all these features
* Two JavaServer Pages (JSP) custom tag libraries for expressing UI components within a JSP page and for wiring components to server-side objects
created by syam1224 on 2008-03-27 22:21:48
|
|
|
JavaServer Faces
JavaServer Faces technology simplifies building user interfaces for JavaServer applications. Developers of various skill levels can quickly build web applications by: assembling reusable UI components in a page; connecting these components to an application data source; and wiring client-generated events to server-side event handlers.
created by syam1224 on 2008-03-26 21:57:57
|
|
|
Java Specification Requests for JavaServer Faces
Java Specification Requests (JSRs) are the actual descriptions of proposed and final specifications for the Java platform. At any one time there are numerous JSRs moving through the review and approval process.
created by syam1224 on 2008-03-26 22:17:29
|
|
|
Chain of Responsibility : Design Pattern
In Object Oriented Design, the chain-of-responsibility pattern is a design pattern consisting of a source of command objects and a series of processing objects. Each processing object contains a set of logic that describes the types of command objects that it can handle, and how to pass off those that it cannot to the next processing object in the chain. A mechanism also exists for adding new processing objects to the end of this chain.
created by syam1224 on 2008-05-07 21:10:15
|
|
|
log4j Articles
Log4j is a Java-based logging utility. It was originally written by Ceki Gülcü and is now a project of the Apache Software Foundation.
created by syam1224 on 2008-03-27 13:24:37
|
|
|
State Design Pattern
The state pattern is a behavioral software design pattern, also known as the objects for states pattern. This pattern is used in computer programming to represent the state of an object. This is a clean way for an object to partially change its type at runtime
created by syam1224 on 2008-05-11 21:21:54
|
|
|
Oracle RAC : Oracle Real Application Clusters
Oracle Real Application Clusters (RAC) is an option to the award-winning Oracle Database Enterprise Edition. Oracle RAC is a cluster database with a shared cache architecture that overcomes the limitations of traditional shared-nothing and shared-disk approaches to provide highly scalable and available database solutions for all your business applications.
created by syam1224 on 2008-04-25 06:03:37
|
|
|
Boyer Moore Algorithm : Pattern Matching
The Boyer-Moore algorithm is considered as the most efficient string-matching algorithm in usual applications.The algorithm scans the characters of the pattern from right to left beginning with the rightmost one. In case of a mismatch (or a complete match of the whole pattern) it uses two precomputed functions to shift the window to the right. These two shift functions are called the good-suffix shift (also called matching shift and the bad-character shift (also called the occurrence shift).
created by syam1224 on 2008-04-21 16:43:07
|
|
|