Hello everyone,
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.
All necessary jars are located in the web-inf/lib directory, but as soon as I add the following lines to my 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>
I am getting an error
HTTP status 404 description The requested resource () is not available
At the moment I only have a passthrough action with no implementation class which simply redirects to a jsp result page.
If anybody has any ides, I would really appreciate it.
Kind regards D