starting a struts2 project in eclipse - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T22:27:32Z http://stackoverflow.com/feeds/question/890320 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/890320/starting-a-struts2-project-in-eclipse 0 starting a struts2 project in eclipse joel_nc 2009-05-20T21:20:47Z 2009-08-30T12:57:31Z <p>Hello everyone,</p> <p>I am in the process of starting a struts2 project. While I was able to use struts2-blank as a quick out-of-the-box project, I have trouble creating my own struts2 project in Eclipse.</p> <p>All necessary jars are located in the web-inf/lib directory, but as soon as I add the following lines to my web.xml</p> <pre><code>&lt;filter&gt; &lt;filter-name&gt;struts2&lt;/filter-name&gt; &lt;filter-class&gt;org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter&lt;/filter-class&gt; &lt;/filter&gt; &lt;filter-mapping&gt; &lt;filter-name&gt;struts2&lt;/filter-name&gt; &lt;url-pattern&gt;/*&lt;/url-pattern&gt; &lt;/filter-mapping&gt; </code></pre> <p>I am getting an error </p> <blockquote> <p>HTTP status 404 description The requested resource () is not available</p> </blockquote> <p>At the moment I only have a passthrough action with no implementation class which simply redirects to a jsp result page.</p> <p>If anybody has any ides, I would really appreciate it.</p> <p>Kind regards D</p> http://stackoverflow.com/questions/890320/starting-a-struts2-project-in-eclipse/893380#893380 0 Answer by Dusty Pearce for starting a struts2 project in eclipse Dusty Pearce 2009-05-21T14:59:10Z 2009-05-21T14:59:10Z <p>Hard to say. The error is not really Struts specific. I think you will have to provide more information about what you are doing. If you used the maven archetypes are you able to get your project to run using mvn jetty:run? Did you import your project into Eclipse as a Maven project? Are you running this inside Eclipse? </p> <p>It seems like if you are running the site in the IDE, it is having trouble with the location of what is built and then deploying that as a web application. Check the Eclipse web deployment/run tomcat/whatever options.</p> http://stackoverflow.com/questions/890320/starting-a-struts2-project-in-eclipse/1184786#1184786 0 Answer by mathi for starting a struts2 project in eclipse mathi 2009-07-26T14:59:22Z 2009-07-27T01:38:49Z <pre><code>&lt;filter&gt; &lt;filter-name&gt;filter&lt;/filter-name&gt; &lt;filter-class&gt;org.apache.struts2.dispatcher.FilterDispatcher&lt;/filter-class&gt; &lt;/filter&gt; &lt;filter-mapping&gt; &lt;filter-name&gt;filter&lt;/filter-name&gt; &lt;url-pattern&gt;/*&lt;/url-pattern&gt; &lt;/filter-mapping&gt; </code></pre> <p>pl check it</p> http://stackoverflow.com/questions/890320/starting-a-struts2-project-in-eclipse/1353820#1353820 0 Answer by ravi for starting a struts2 project in eclipse ravi 2009-08-30T12:57:31Z 2009-08-30T12:57:31Z <p>i think the error is pertaining to the src folder.. where hv u placed it. and if u using eclipse u hv to mention at the start tht u will be using webcontent/web=inf/src as source directory. hope this helps</p>