The following blogs for Java:
http://easyjava4u.blogspot.com
http://easyjsp.blogspot.com
http://sapeasysoft.blogspot.com
Sunday, December 14, 2008
Saturday, December 13, 2008
Introduction
This tutorial is extensive guide to the Struts Framework. In this tutorial you will learn how to develop robust application using Jakarta Struts Framework. This tutorial assumes that the reader is familiar with the web application development with JSP, Servlets, JDBC and custom tags. To begin with let's understand the Jakarta Struts Framework.
What is Struts?
Struts Frame work is the implementation of Model-View-Controller (MVC) design pattern for the JSP. Struts is maintained as a part of Apache Jakarta project and is open source. Struts Framework is suited for the application of any size. Latest version of struts can be downloaded from http://jakarta.apache.org/. We are using jakarta-struts-1.1 and jakarta-tomcat-5.0.4 for this tutorial.
What is Model-View-Controller (MVC) Architecture?
Model-View-Controller architecture is all about dividing application components into three different categories Model, View and the Controller. Components of the MVC architecture have unique responsibility and each component is independent of the other component. Changes in one component will have no or less impact on other component. Responsibilities of the components are:
What is Struts?
Struts Frame work is the implementation of Model-View-Controller (MVC) design pattern for the JSP. Struts is maintained as a part of Apache Jakarta project and is open source. Struts Framework is suited for the application of any size. Latest version of struts can be downloaded from http://jakarta.apache.org/. We are using jakarta-struts-1.1 and jakarta-tomcat-5.0.4 for this tutorial.
What is Model-View-Controller (MVC) Architecture?
Model-View-Controller architecture is all about dividing application components into three different categories Model, View and the Controller. Components of the MVC architecture have unique responsibility and each component is independent of the other component. Changes in one component will have no or less impact on other component. Responsibilities of the components are:
Model: Model is responsible for providing the data from the database and saving the data into the data store. All the business logic is implemented in the Model. Data entered by the user through View are check in the model before saving into the database. Data access, Data validation and the data saving logic are part of Model.
View: View represents the user view of the application and is responsible for taking the input from the user, dispatching the request to the controller and then receiving response from the controller and displaying the result to the user. HTML, JSPs, Custom Tag Libraries and Resources files are the part of view component.
Controller: Controller is intermediary between Model and View. Controller is responsible for receiving the request from client. Once request is received from client it executes the appropriate business logic from the Model and then produces the output to the user using the View component. ActionServlet, Action, ActionForm and struts-config.xml are the part of Controller.
Setting Up Development Environment
Setting Up Development Environment
Installing JDK:
Download JDK 1.4 or above from sun site. Follow the instruction given in the installation manual and install JDK.
Download JDK 1.4 or above from sun site. Follow the instruction given in the installation manual and install JDK.
Installing Tomcat:
Download Tomcat from the apache site and install it. I have downloaded jakarta-tomcat-5.0.4 and installed for this tutorial. To test your installations go to your installation directory/bin and issue startup command to run the server. Open browser and type http://localhost:8080/ to test the server. It should display the welcome page. If not consult tomcat documentation before going further.
Download Tomcat from the apache site and install it. I have downloaded jakarta-tomcat-5.0.4 and installed for this tutorial. To test your installations go to your installation directory/bin and issue startup command to run the server. Open browser and type http://localhost:8080/ to test the server. It should display the welcome page. If not consult tomcat documentation before going further.
Installing Struts Application:
Download latest version of Struts from the official site of Struts http://jakarta.apache.org/struts. Extract the file to your favorite directory and copy struts-blank.war, struts-documentation.war and struts-example.war from "jakarta-struts-1.1\webapps" directory into "jakarta-tomcat-5.0.4\webapps" directory.
struts-blank.war is the blank struts application which is useful in creating struts application from scratch. We will use this file to create our web application.
struts-documentation.war contains API and important documents for the struts application development.
struts-example.war is simple MailReader Demonstration Application.
Download latest version of Struts from the official site of Struts http://jakarta.apache.org/struts. Extract the file to your favorite directory and copy struts-blank.war, struts-documentation.war and struts-example.war from "jakarta-struts-1.1\webapps" directory into "jakarta-tomcat-5.0.4\webapps" directory.
struts-blank.war is the blank struts application which is useful in creating struts application from scratch. We will use this file to create our web application.
struts-documentation.war contains API and important documents for the struts application development.
struts-example.war is simple MailReader Demonstration Application.
Subscribe to:
Posts (Atom)
