|
Title :
Custom Validators in Struts 2.0
Author :
AnuBakshi
Date : Fri Apr 1st, 2011
Struts 2.0 is the popular Open Source Presentation Tier framework developed by Apache Group. It is based on MVC Model 2 design pattern. Dispatcher Filter is the front controller for the struts2 based applications. Struts 2.0 has simplified web development for its users by introducing POJO based actions, interceptors, flexible validation and support for many different result types.
Title :
Custom Interceptors in Struts 2.0
Author :
AnuBakshi
Date : Fri Mar 11th, 2011
Struts 2.0 is the popular Open Source Presentation Tier framework developed by Apache Group. It is based on MVC Model 2 design pattern. Dispatcher Filter is the front controller for the struts2 based applications. Struts 2.0 has simplified web development for its users by introducing POJO based actions, interceptors, flexible validation and support for many different result types.
Struts can be used to build the user interface tier of the enterprise application. Interceptors can be used to embed the cross cutting or plumbing logic of the application in a clean and reusable manner.
This article explains the concept of custom interceptors.
Title :
Struts 2.0 and JPA Integration
Author :
AnuBakshi
Date : Mon Feb 28th, 2011
Struts 2.0 is the popular Open Source Presentation Tier framework developed by Apache Group. It is based on MVC Model 2 design pattern. Dispatcher Filter is the front controller for the struts2 based applications. Struts 2.0 has simplified web development for its users by introducing POJO based actions, interceptors, flexible validation and support for many different result types.
Struts can be used to build the user interface tier of the enterprise application. Whereas, any of the popular ORMs like Hibernate, JPA, iBatis can be used for the persistence tier of the application. Struts2 provides easy integration with these persistence tier frameworks.
This article demonstrates the integration of Struts 2.0 applications with the Java Persistence API (JPA). The concept is explained with the help of a sample application. Knowledge of JPA and Struts 2.0 is the prerequisite for this article.
Title :
Integrating Struts 2.0 applications with Hibernate
Author :
Manju
Date : Sat Feb 19th, 2011
Struts 2.0 is one of the popularly used Presentation tier framework for Java web Applications.It is based on the WebWork2 technology.Struts 2.0 framework implements MVC 2 architecture by centralizing the control using a Front Controller strategy. The extensible and flexible nature of Struts 2.0 makes it the favourite choice of Java web developers. The major features of Struts 2.0 are user interface tags, Interceptor, result and validation.
A strong persistence framework is critical to the success and scalability of any application that we develop. Today we have a lot of data access frameworks like Hibernate, JDBC, JPAs, etc available in the market. Sturts can be integrated easily with any of these popularly used data access frameworks.
Title :
Struts Interview Questions
Author :
JavaBeat
Date : Thu Aug 5th, 2010
1)What is Struts?
2)What is Jakarta Struts Framework?
3)What is ActionServlet?
4)What is Action Class?
5)What is ActionForm?
6)What is Struts Validator Framework?
7)Give the Details of XML files used in Validator Framework?
8)How you will display validation fail errors on jsp page?
9)How you will enable front-end validation based on the xml in validation.xml?
10)How to get data from the velocity page in a action class?
Title :
Internationalization and Taglibs in Struts 1.2
Author :
PacktPub
Date : Tue Sep 1st, 2009
Internationalization is a complex and involved subject. In brief, it refers to the automatic
rendering of an application in the user's chosen language. It relates not only to the text
itself, but also to numbers, date format, and currency values. Special symbols and
alphabetical sorting in different languages bring interesting and unexpected problems
with them.
Title :
Integrating Struts With Spring
Author :
MunafSahaf
Date : Sun May 13th, 2007
Struts is more established and more stable MVC2 framework at this time so if your application is based on Struts framework you may forget about thinking to move to some other framework. But at the same time you must have heard about the buzz created by Inversion of Control (IOC) design pattern. This design pattern is implemented by Spring framework. Besides there are some more amazing features of Spring like AOP. So if you like to take advantage of these features of Spring you do not have to rebuild the application, but you can integrate your existing Struts application with Spring without much hassle. More about that latter but first we would like to have a look at new features of Spring and how they work.
Title :
What's new in Struts 2.0? - Struts 2.0 Framework
Author :
JavaBeat
Date : Thu Apr 12th, 2007
In this article we will talk about the new features in Struts 2.0. Over the years, every developers believes that struts is the best and simple framework to implement. Since last two years, more new frameworks come to the market and the use of Struts is declined. Lack of updation in the Struts framework is the main reason for developers choosing alternative framework. To answer this, Struts team comes with the Struts 2.0, an integration of Struts 1.0 with Webwork. Here we will look into the prominent features in the new framework.
Title :
Introductiion to Jakarta Struts
Author :
NileshPagar
Date : Thu Apr 12th, 2007
This article explores the Struts framework in depth and highlights the benefits Struts can bring to your development efforts. We believe that once you can “talk the talk” of web architecture and design, you will be better equipped to use Struts with your own applications.
Title :
Struts 2.0 Introduction and Validations using Annotations
Author :
Raja
Date : Wed May 30th, 2007
This article provides an introduction to Struts 2.0 and its new Validation Features. Since Struts 2.0 is new, the first few sections of the article discusses in brief about the basics of Struts 2.0, its architecture and its various New Features. The rest of the article is dedicated towards explaining about the new Validation Features available. Struts is an Open-Source Web Application Framework that simplifies the creation of a Java Web Application. It is based on the Model-View-Controller 2 (MVC 2) Architecture which was originally found in a language called SmallTalk. The recent version of Struts is Struts 2.0 and it has borrowed most of the concepts in terms of architecture and functionality from two frameworks namely WebWork and XWork.
Title :
Introduction to Struts Actions
Author :
VaniShanmugam
Date : Sat Jul 21st, 2007
Action classes will be defined to handle requests. Actions exists between the Model and View of an application. This article will cover all of the standard actions and the helper methods of the Action class.
Title :
AJAX Support in Struts 2.0
Author :
JesinthaPriyadarshini
Date : Sat Jun 9th, 2007
Ajax or Asynchronous JavaScript and XML was introduced by Jesse James Garrett in 2005. He is called the "Father of Ajax" .Ajax is a collection of concepts and technologies that allows richer and more interactive user interaction with the web applications. The Ajax engine allows the user's interaction with the application to happen asynchronously — independent of communication with the server. So the user is never staring at a blank browser window and an hourglass icon, waiting around for the server to do something.
|