Monthly Archives: January 2009

GlassFish

GlassFish is the name of an open source development project for the next generation Sun Microsystems Java EE server. Sun is productizing this as the Sun Java System Application Server 9.x . GlassFish is based on application server source code …

Read more »

JSF Tips

JSF tip – 1 Handling HTML forms is one of the most common tasks when you develop web applications. The JSF provides JSP tags for rendering HTML forms, manages the state of the forms, validates user-input reporting errors, lets you …

Read more »

JFreeChart

JFreeChart is a free 100% Java chart library that makes it easy for developers to display professional quality charts in their applications. JFreeChart’s extensive feature set includes: a consistent and well-documented API, supporting a wide range of chart types; a …

Read more »

J2EE Application server

What is an Application server An application server is a software engine that delivers applications to client computers or devices. Moreover, an application server handles most, if not all, of the business logic and data access of the application (A.K.A. …

Read more »

XML Interview Questions -1

XML Interview Questions Can you walk us through the steps necessary to parse XML file? DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); factory.setValidating(true); DocumentBuilder domBuilder = factory.newDocumentBuilder(); Document doc = domBuilder.parse(XMLFile); Describe the role that XSL can play when dynamically generating HTML pages …

Read more »

Joomla

Joomla is a free, open source content management system written with PHP for publishing content on the world wide web and intranets, using the MySQL database. Joomla! includes features such as page caching to improve performance, RSS feeds, printable versions …

Read more »

Geronimo tutorial

<project name=”GeronimoApp” default=”war” basedir=”.”> <property environment=”env”/> <path id=”cp”>       <pathelement path=”${java.class.path}”/>       <fileset dir=”${env.GERONIMO_HOME}/       repository/org.apache.geronimo.specs/jars”>         <include name=”*.jar”/>       </fileset>     </path>   <target name=”prepare”>     <mkdir dir=”dist”/>     <mkdir dir=”classes”/>     <mkdir dir=”build”/>     <delete>      <fileset dir=”classes” …

Read more »

Geronimo

Geronimo is the newest Apache-initiated, open source application server. Licensed under the Apache license (version 2.0), Geronimo is a Java EE 1.4 certified app server In This Article: In This Article: 1. Why Geronimo? 2. A Look Under the Hood …

Read more »

Sitemap   Follow j2eetutorial on Twitter    

Δ Top