Hello,

I'm running Tomcat 5.5 on Linux (Fedora) and java 1.5.0_12-b04.

I have the simplest of Struts2 application and I keep getting an error in
the logs stating:

ERROR TP-Processor5 org.apache.catalina.core.StandardContext - Error
filterStart
ERROR TP-Processor5 org.apache.catalina.core.StandardContext - Context
[/webapps/test] startup failed due to previous errors


Have any of you encountered this problem and if so, how did you resolve it?

Struts.xml:
...
<struts>
 <package name="test" extends="struts-default">
   <action name="Test" class="Test">
     <result>/HelloWorld.jsp</result>
   </action>
  </package>
</struts>

Web.xml
...
<filter>
<filter-name>struts</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>

<filter-mapping>
<filter-name>struts</filter-name>
<url-pattern>/execute/*</url-pattern>
</filter-mapping>

pom.xml
...
<dependency>
 <groupId>org.apache.struts</groupId>
 <artifactId>struts2-core</artifactId>
 <version>2.0.9</version>
</dependency>

Thanks.
Aladin

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to