SSH+MVC Web 应用程序中的 HTTP 状态 404

HTTP Status 404 in SSH+MVC web application

这是我的配置:

Tomcat 6<br/>
jdk1.6<br/>
MyEclipse 
Win 7
HTTP Status 404 -
type Status report

I have a Dynamic Web Project set up in MyEclipse titled "ch21" with following structure. The web application works well local.But when I upload it to website.Then I can't call any jsp file.Such as index.jsp ,regist.jsp. The error message is following.

HTTP 状态 404

message
description The requested resource () is not available.
Apache Tomcat/6.0.29

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>

    <listener>
        <listener-class>
            org.springframework.web.context.ContextLoaderListener
        </listener-class>
    </listener>
</web-app>

struts.xml

<constant name="struts.i18n.encoding" value="gb2312"></constant>

<package name="struts2" extends="struts-default">
        <action name="regist" class="regAction">
            <result name="success" >/login.jsp</result> 
            <result name="input">/regist.jsp</result>
            <result name="error">/regist.jsp</result>
        </action>
</package>

I added the following in web.xml.

<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>register.jsp</welcome-file>
</welcome-file-list>

I call http://example.net/index.jsp .But It can't work. The error message :HTTP Status 404 .

我搜索了其他问题,然后刚才我问了hosting.He帮我更新了一个jar(他没有告诉我细节),他解决了question.Thank你非常好!