- Tuesday, June 9, 2009, 17:23
- Struts, Tutorial
- 26,096 views
Struts display tag library is an open source suite of custom tags that provide high-level web presentation patterns which will work in an MVC model. The library provides a significant amount of functionality while still being easy to use. Displaytag can handle column display, sorting, paging, cropping, grouping, exporting, smart linking and decoration of a table in a customizable XHTML style.
In the following example ...
Full story
- Wednesday, March 11, 2009, 19:13
- Featured, Struts, Tutorial
- 4,261 views
We learned in
this tutorial about creating a basic web application in Struts, We had used Struts Frameworks ActionForm to manage the form data. Let us see how to use DynaActionForm to manage the form data.
DynaActionForm is also called as Dynamic Form Bean. These are extensions of Form Beans that allow you to specify their ...
Full story
- Thursday, February 19, 2009, 16:04
- AJAX, Java, JavaScript, Struts, Tutorial
- 45,090 views
JSON (JavaScript Object Notation) is a lightweight computer data interchange format. It is a text-based, human-readable format for representing simple data structures and associative arrays (called objects). The JSON format is specified in
RFC 4627 by Douglas Crockford. The official Internet media type for JSON is application/json.
The JSON format is often used ...
Full story
- Thursday, January 22, 2009, 12:00
- Featured, Struts, Tutorial
- 36,811 views
Apache Struts has changed the way we develop a Web application. Since its inception as an MVC architecture, Struts has been extensively used in J2EE world to develop robust, extendable and effective web applications.
Introduction to Struts Validation Framework
One of the important features of Struts framework is Struts Validation framework that performs validation on incoming ...
Full story
- Friday, January 16, 2009, 16:30
- Struts, Tutorial
- 13,416 views
Are you bugged of creating separate action classes for some common set of functionality in your Struts application? Feeling pain in managing all those hundreds of Action classes in your project? Don't worry, cheers..!! DispatchAction is for you.
DispatchAction is one of the Struts built-in action that provides a mechanism that facilitates having a set of related functionality in a single action instead of creating separate ...
Full story
- Monday, December 22, 2008, 14:51
- Struts, Tutorial
- 7,499 views
Let us see how we can implement file upload functionality using Apache Struts Framework. I assume you have basic knowledge about Struts and know the flow of a struts application. If you are new to struts, I suggest you to check this tutorial first:
Struts Project in Eclipse.
First let us download all the required JAR files to implement file upload functionality. For this we ...
Full story
- Tuesday, December 16, 2008, 15:57
- Featured, J2EE, Spring, Struts, Tutorial
- 21,566 views
Let us see how to add Spring support (Spring IOC) to a Struts application using Eclipse IDE. I will use the hello world struts project that we created in
this tutorial as base reference and step by step we will add Spring support to it.
In this tutorial we will use Spring IOC (Inversion Of Control) mechanism. There will be a business delegate class ...
Full story
- Monday, December 8, 2008, 12:38
- Featured, How-To, Struts, Tutorial
- 8,423 views
In the previous tutorials about
Creating Struts application in Eclipse, we saw step by step how we can create a Struts project. In this tutorial we will explore Tiles plugin in struts.
Introduction of Tiles Plugin
Nowadays, website are generally divided into pieces of reusable template that are being rendered among different web pages. For example a site containing header, footer, menu etc. This items remains ...
Full story
- Thursday, December 4, 2008, 19:05
- Featured, How-To, Struts, Tutorial
- 77,254 views
Note: If you looking for tutorial "Create Struts2 Application in Eclipse"
Click here.
In this tutorial we will create a hello world Struts application in Eclipse editor. First let us see what are the tools required to create our hello world Struts application.
JDK 1.5 above (
download)
Tomcat 5.x above or any other container (Glassfish, JBoss, Websphere, Weblogic etc) (
download)
Eclipse 3.2.x ...
Full story
- Tuesday, December 2, 2008, 12:05
- How-To, Struts, Tutorial
- 3,430 views
The web application created by using Struts framework can be easily identified by the URL patterns. Mostly all the Struts application have *.do or *.action URL depending on the version of Struts being used and the best practices that are followed.
These URLs are lessĀ search engine friendly as they reveal very little about the content. Hence it can be useful to implement a web application ...
Full story