www.StudyJava.org

Pure Java

It is currently Fri Sep 10, 2010 6:50 pm

All times are UTC




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: Configuring Struts 2 in eclipse
PostPosted: Fri Jun 12, 2009 6:18 am 
Offline

Joined: Fri Jun 12, 2009 6:11 am
Posts: 1
Can any one please post how to create and configure struts2 projects in eclipse, and required jars versions too.

Thanks in advance for any such posts Mr. Green


 
 Profile  
 
 Post subject: Re: Configuring Struts 2 in eclipse
PostPosted: Fri Jun 12, 2009 8:05 am 
Offline

Joined: Mon Apr 23, 2007 10:14 am
Posts: 9
Dear Raghu,

Here is the Web.xml entry for struts2 . Save it under WEB-INF/

The configuration is just as easy as for a servlet, and shown here

<filter>
<filter-name>sample</filter-name>
<filter-class>
org.apache.struts.action2.dispatcher.FilterDispatcher
</filter-class>
</filter>

<filter-mapping>
<filter-name>sample</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

Copy the following jar files to the “WEB_INF/lib” folder.

1. commons-logging
2. freemarker
3. ognl
4. struts2-core
5. xwork

I didn't mention the version number because it may change.


 
 Profile  
 
 Post subject: Re: Configuring Struts 2 in eclipse
PostPosted: Thu Jan 28, 2010 7:18 am 
Offline

Joined: Thu Jan 28, 2010 7:07 am
Posts: 1
this is the web.xml
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

however you can see the blank sample .there has all you want


 
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Google
 




Powered by phpBB © 2002, 2006 phpBB Group
[ Time : 0.099s | 12 Queries | GZIP : Off ]