| Author |
Struts2 with RAD7
|
v gang
Greenhorn
Joined: May 07, 2008
Posts: 3
|
|
Hi, I have to start my application from scratch. So we planned to go with RAD7,Struts2 and tiles. At present i am setting my workspace. So can you provide me some details to integrate tiles with struts2. I have configured struts2 in RAD7 in the following way. Added the required jars in lib folder. Included the following in struts.xml <?xml version="1.0" encoding="UTF-8" ?> < !DOCTYPE struts PUBLIC<br /> "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"<br /> "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <package name="" namespace="" extends="struts-default"> <action name="" class=""> <result></result> </action> </package> </struts> and web.xml looks like following <?xml version="1.0"?> < !DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"<br /> "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <display-name>My Application</display-name> <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app> Can you let me know what else i have to do to configure struts and i want to know how to integrate tiles in struts2. Please help me in this.bcz i have to start my application and i am struck with integrating tiles. Thanks for help in advance
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26193
|
|
|
A quick search turned up this blog entry. Take a look at it and do post here when you have a more specific question.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
 |
|
|
subject: Struts2 with RAD7
|
|
|