test

Wednesday, February 29, 2012

JSP Basics

Visit my new portal bharaththippireddy.net











Assignment:


Browse through the following Servlet Classes and their methods in the Servlet API Documentation - Link to the Servlet Java Docs


GenericServlet 
HttpServlet 
HttpServletRequest 
HttpServletResponse
HttpSession 
ServletConfig 
ServletContext 





Related Presentations:

Servlet Basics Part 3

Servlet Basics Part 2

Servlet Basics

J2EE Web Application Basics

Wednesday, February 8, 2012

Ant : Hands On

Visit my new portal bharaththippireddy.net






Build file to get you started:

<?xml version="1.0"?>
<project name="UserProfileDatabaseLayerProject" default="jar" basedir=".">
<property name="src.dir" location="src" />
<property name="build.dir" location="D:\build" />
<property name="project.name" value="UserProfileDatabaseLayerProject" />
<target name="clean">
<delete dir="${build.dir}" />
</target>
<target name="makedir">
<mkdir dir="${build.dir}" />
<mkdir dir="${build.dir}/classes" />
</target>
<target name="compile" depends="clean,makedir">
<javac srcdir="${src.dir}" destdir="${build.dir}/classes"/>
</target>
<target name="jar" depends="compile">
<jar destfile="${build.dir}/jars/${project.name}.jar" basedir="${build.dir}/classes" />
</target>
</project>
view raw build.xml hosted with ❤ by GitHub

Next:

J2EE Web Application Basics

Related Presentations:

ANT : The Build Automation Tool

Eclipse IDE : A Realtime Project

XML : An Introduction

J2EE Development Environment For Beginners

J2EE Technology Roadmap for beginners