-4

这是我的配置:

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

我在 MyEclipse 中设置了一个名为“ch21”的动态 Web 项目,其结构如下。Web应用程序在本地运行良好。但是当我将其上传到网站时。然后我无法调用任何jsp文件。例如index.jsp,regist.jsp。错误消息如下。

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>

我在 web.xml 中添加了以下内容。

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

我打电话给http://example.net/index.jsp。但它不能工作。错误消息:HTTP 状态 404。

4

1 回答 1

0

我搜索了其他问题,然后刚才我问了托管。他帮我更新了一个罐子(他没有告诉我细节),他解决了这个问题。非常感谢!

于 2018-04-28T06:25:07.717 回答