Archive for December 20th, 2009
December 20, 2009
Tutorial, tomcat
1- Download latest Apache Tomcat from here. You can download a zip or a tar for Linux or an installer package.
2- Unzip/ install tomcat at a proper place; say in C:/tomcat directory
Set up environment variables
1- To make tomcat run JAVA_HOME environment must be set. If you already have not done this then refer to other tutorial Install And Configure JDK On Windows and set the java variables
Read More
December 20, 2009
Tutorial, java
First download JDK from here. I am using JDK 6 for this tutorial
1- Run the JDK setup and install Java on your machine
2- On windows right click My Computer and click Properties
Read More
December 20, 2009
Andriod
Andriod applications are written in Java programming language. Each Andriod Application can have 4 basic components.
Activities
You can say Activity is a set of UI components available for users to be used , at some specific instant of time. For example; an Activity in image viewer application can be image and its description and navigation available. Moving from one activity to another is accomplished by having the current activity start the next one. Read More
December 20, 2009
J2EE, Tutorial
Pre-Requisites
- Eclipse : I am using Eclipse 3.4 (Ganymede) for this application. You can download the latest version from here
- Tomcat : download from here
Level: beginners
This application is for newbie how want to start java web development. In this application we will create a web application in Eclipse platform and the application will be deployed on Tomcat web server. This application will only show some output on the JSP page.
Lets start with our application
Read More