S
slider7777
Gast
Hallo,
Ich habe eine kleine Web Anwendung mit struts geschrieben (in Eclipse). Jedoch findet Tomcat anscheinend die Klasse ActionServlet nicht, diese ist jedoch in den Libraries vorhanden...
der Fehler:
java.lang.ClassNotFoundException: org.apache.struts.action.ActionServlet
das packet org.apache.struts.action sowie die Klasse sind vorhanden....
hier mal die web.xml:
struts-config.xml:
danke für Hilfe!
[/code]
Ich habe eine kleine Web Anwendung mit struts geschrieben (in Eclipse). Jedoch findet Tomcat anscheinend die Klasse ActionServlet nicht, diese ist jedoch in den Libraries vorhanden...
der Fehler:
java.lang.ClassNotFoundException: org.apache.struts.action.ActionServlet
das packet org.apache.struts.action sowie die Klasse sind vorhanden....
hier mal die web.xml:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>
SimpleForum</display-name>
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>3</param-value>
</init-param>
<init-param>
<param-name>detail</param-name>
<param-value>3</param-value>
</init-param>
<load-on-startup>0</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
struts-config.xml:
Code:
<struts-config>
<form-beans>
<form-bean name="forum" type="beans.BeanForum" />
<form-bean name="thema" type="beans.BeanThema" />
</form-beans>
<action
name="forum"
path="/start"
scope="request"
type="actionhandler.ForumAction"
validate="false">
<forward name="success" path="/abc.jsp" />
<forward name="failure" path="/error.jsp" />
</action>
<action
name="thema"
path="/thema"
scope="request"
type="actionhandler.ThemaAction"
validate="false">
<forward name="success" path="/thread.jsp" />
<forward name="failure" path="/index.jsp" />
</action>
</struts-config>
danke für Hilfe!
[/code]