Struts Tutorials:
Struts2 Tag CheckBoxList , Checkbox, Iterator, IF
Struts2 Tag Library Example
Struts2 Tiles Example
Struts2 Tiles I18N Example
Struts2 Questions
Struts Tiles I18N Example
Struts Eclipse MVC
Struts2 Tags
Struts2 Example and Tutorial
Struts MVC
Struts2 Validation
Hibernate Tutorials:
Hibernate Case Study
Class Hierarchy Persist Example
Using Hibernate Interceptor
Hibernate Questions with Answer
Hibernate Many-to-Many Mapping Example
Hibernate one-to-many Mapping Example
Hibernate and ORM tools
Spring Hibernate Example
Hibernate SessionFactory Example
Hibernate Mapping Class Hierarchy
Hibernate Questions
Hibernate SessionFactory Questions
Spring Hibernate Example:
Spring Hibernate Case Study
Written By : ISHTEK
Title :
Struts2
Description :
Tags such as IF Iterator Tags More...
|
Written By : guddu
Title :
Struts Eclipse MVC
Description :
Step by step demonstration More...
|
Written By : Girish
Title :
Struts Tiles I18N Example
Description :
Code with Sample Action More...
|
Written By : ISHTEK
Title :
Struts2 questions
Description :
open for discussion More...
|
Written By : ISHTEK
Title :
Struts2 Tiles Example
Description :
with Code and article More...
|
Written By : ISHTEK
Title :
Struts2 Tiles I18N Example
Description :
with code explained article More...
|
Written By : Amit
Title :
Struts2 Tag Library Example
Description :
Tutorial More...
|
| Struts, Struts2 Tutorial, Struts 2 Example, Struts2 Author : Amit Date (Year/Month/Date): 2009-09-29
Starting with an example of a prototype web based application
using Struts2 as MVC framework.
This prototype will be having two main screens, one screen for
accepting inputs from the screen viewer and another is preview
screen for displaying all selected values from the input screen.
The main input screen will be mainly using all the Struts2 Tags
from the Struts2 Tag Library, and any other associated and
third party Tag Libraries.
I am inviting all interested users/viewers/readers of this Page
to start contributing one tag each to grow this prototype screen
to be able to include most of the Tags from Struts2 Framework,
and any other Tag Library as well.
To start with, I am adding a TextField to the Part number
field at the top of the screen as follows:
<%@ taglib uri="/struts-tags" prefix="stags"%>
<html>
<body>
<pre>
...
<stags:textfield key="partNumber" label="Part Number :"/>
...
</pre>
</body>
</html>
As other sections of this page are shown as dotted line, one can use
ay action mapping and namespace as one like in form tag, but it should be
able to go/view preview page successfully.
| |