- Wednesday, January 13, 2010, 14:46
- Struts 2, Tutorial
- 2,354 views
Welcome to the last part of 7 article series of Struts 2 Framework tutorials. In
previous article we saw how to implement File Upload functionality in Struts 2. In this article we will see how we can implement Ajax support in a webapplication using Struts2 framework.
AJAX support in Struts 2
Struts 2 provides built-in support to AJAX using Dojo Toolkit library. If you are new ...
Full story
- Tuesday, December 29, 2009, 20:45
- Struts 2, Tutorial
- 1,803 views
Welcome to Part-5 of 7-Part series where we are discussing different aspects of Struts2 Framework. In the
previous article we saw how to integrate Tiles framework with Struts2.
Today we will explorer the world of Interceptors in Struts2. We will see what Interceptors are and how to configure them in a Struts2 based web application.
Struts 2 Interceptors: Basics
Struts2 provides very powerful mechanism of controlling ...
Full story
- Monday, December 28, 2009, 18:58
- Struts 2, Tutorial
- 2,452 views
Welcome to Part-4 of the 7-part series where we will go through different aspects for Struts2 Framework with some useful examples. In previous part we went through
Struts2 Validation Framework. We saw how easy it is to integrate validation in your struts2 application.
In this part we will discuss about Tiles Framework and its Integration with Struts2. We will add Tiles support to our ...
Full story
- Thursday, December 24, 2009, 16:05
- How-To, Struts 2
- 3,442 views
Welcome to Part-3 of 7-part series of tutorials where we will go through different practical aspects of Struts2 Framework. In the last part we Created a
Basic Struts2 Application from Scratch. I strongly recommend you to go through the previous articles in case you are new to Struts2.
In this article we will learn how to ...
Full story
- Tuesday, June 9, 2009, 17:23
- Struts, Tutorial
- 13,618 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
- 3,133 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
- 24,662 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
- 23,861 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
- 9,819 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
- 5,775 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