Exercise 10: Using Struts and Tiles : Struts « J2EE « Java






Exercise 10: Using Struts and Tiles

/*
First edition copyright 2004 ObjectSource LLC. All rights reserved.
This training material and the accompanying lab exercises were prepared 
by Srikanth Shenoy for ObjectSource LLC.

GRANT OF LICENSE: ObjecSource LLC grants you a non-exclusive license to 
use the material. No part of this publication may be reproduced, stored 
in a retrieval system or transmitted in any form or by any means 
electronic, mechanical, photocopying, recording or otherwise, without 
the prior written permission of ObjectSource LLC. At its discretion, 
ObjectSource LLC may provide limited support through email or discussion 
forums at ObjectSource web site. ObjectSource incurs no obligation 
to provide any support under this Agreement.
*/

/*

Technical Objectives for this exercise: 
The technical objectives of this exercise is to learn ?how to?: 
1) Use Struts and Tiles 
a) Add TilesRequestProcessor to struts-config.xml 
<controller processorClass="org.apache.struts.tiles.TilesRequestProcessor" /> 
b) Define the Tiles Plugin 
<plug-in className="org.apache.struts.tiles.TilesPlugin" > 
<set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml" /> 
<set-property property="moduleAware" value="true"/> 
</plug-in> 
c) Create an empty Tiles definition file tiles-defs.xml under /WEB-INF directory 
<?xml version="1.0" encoding="ISO-8859-1" ?> 
<!DOCTYPE tiles-definitions PUBLIC 
"-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN" 
"http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd"> 
<tiles-definitions> 
</tiles-definitions> 
d) Add the base definition to the tile definition xml 
<definition name="base.definition" path="/Layout.jsp"> 
<put name="title" value=""/> 
<put name="header" value="/common/header.jsp" /> 
<put name="footer" value="/common/footer.jsp" /> 
<put name="body" value="" /> 
</definition> 
e) Create the definition for each of the three pages by extending the above definition and overriding 
the empty values 
f) Change the references to physical jsps in struts-config.xml and replace them with one of the above 
names. For instance, change all references to 
NOTE: There is no replacement for index.jsp. Let us keep it as is. Hence don?t change references to 
index.jsp 
....
*/


           
       








struts-training.zip( 26,264 k)

Related examples in the same category

1.Exercise 1: Building your first Struts ApplicationExercise 1: Building your first Struts Application
2.Exercise 2: Improving your first Struts Application Exercise 2: Improving your first Struts Application
3.Exercise 3: Using JSTL, Struts-EL etcExercise 3: Using JSTL, Struts-EL etc
4.Struts Recipes: Build Struts with Ant
5.Using bean:resource to expose the struts.config.xml to your view
6.Create a pluggable validator for cross-form validation 2Create a pluggable validator for cross-form validation 2
7.Struts: Generate a response with XSL
8. Hibernate and Struts  Hibernate and Struts
9. In-container testing with StrutsTestCase and Cactus
10.Exercise 4: Applying Gof and J2EE Patterns:Deploy to WebLogic and Test
11.Exercise 5: Search, List, Action Chaining, Editable List Form
12.Exercise 6: Paging
13.Exercise 7: Better Form and Action Handling
14.Exercise 8: Creating Struts Modules
15.Exercise 9: Using Commons Validator with Struts
16.Essential Struts ActionEssential Struts Action
17.A Full Struts ApplicationA Full Struts Application
18.Struts Creating the ViewStruts Creating the View
19.Struts: Creating the ModelStruts: Creating the Model
20.Struts: Creating the ControllerStruts: Creating the Controller
21.Creating Custom TagsCreating Custom Tags
22.The Struts TagsThe Struts Tags
23.The Struts and TagsThe Struts and Tags
24.Web Services and the Validator and Tile PackagesWeb Services and the Validator and Tile Packages
25.Struts Framework: A Sample Struts ApplicationStruts Framework: A Sample Struts Application
26.Struts Framework Validator
27.Struts Framework: TilesStruts Framework: Tiles
28.Struts Framework: Declarative Exception Handling
29.Struts: Internationalizing Struts Applications
30.Securing Struts Applications
31.Testing Struts Applications
32.Struts exampleStruts example
33.Blank Struts templateBlank Struts template
34.Struts Framework
35.Struts: bank application
36.Struts applicationStruts application
37.Struts application 2Struts application 2