简单的struts2程序 为什么总是抛出 404错误呢
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<package name="default" namespace="/" extends="struts-default">
<action name="hello">
<result>
/Hello.jsp
</result>
</action>
</package>
</struts>
web.xml内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
请高人指点 展开
必备: Tomcat + strutsd的jar包 + Tomcat 的jdk 建议用自己安装的jdk。本人的是jdk1.7.
首先,你用了sturts 。在你的WebRoot里的WEB-INFW文件夹下的lib里要有struts的8个基本jar包 <图中的mysql-connector-java-xxxxx.jar 这是连接数据库用的>
如图所示;我下的struts.jar包发给你吧。
其次,在你的web.xml中的<filter>xxx </filter>改为如下:
<filter>
<filter-name>struts2</filter-name>
<filter-lass>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
</filter- class>
</filter>
最后,就是你的struts.xml <!-- index.jsp 和 Hello.jsp 是两个不同的jsp 文件 -->
如果你是只进入index.jsp文件的话就要改为如下
<action name="hello">
<result> /index.jsp</result><!-- 或不添加 如下 -->
</action>
或
<action name="">
<result></result>
</action>
这样当你启动时显示的就是你 index.jsp 里的内容。
如果你还要进入Hello.jsp文件,你就还要做先前两位给你的建议。
<action name="hello" 这后面还要跟你要跳转到哪个类啊>