Struts2 - HTTP状态404 - struts2TesttestAction.action。

问题描述 投票:-2回答:1

我是一个新手,我想了解一下,我看到了很多教程和解决方案,但没有什么可以帮助解决我的错误。我试图了解它是如何,我已经看到了很多教程和解决方案,但没有什么可以帮助解决我的错误。你能不能帮我理解我哪里出了问题,需要纠正什么。下面是我的代码。

我的web.xml

  <?xml version="1.0" encoding="UTF-8"?>
            <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
             xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee 
               http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
              <display-name>struts2Test</display-name>
              <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>
             <filter>
              <filter-name>struts2</filter-name>
              <filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter- 
 class>
             </filter>
             <filter-mapping>
              <filter-name>struts2</filter-name>
              <url-pattern>/*</url-pattern>
             </filter-mapping>
            </web-app>

我的struts.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
   "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
   "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
    <package name="test" extends="struts-default">
        <action name="testAction" class="TestAction">
            <result name="success">/success.jsp</result>
            <result name="error">/error.jsp</result>
        </action>
    </package>
</struts>   

我的行动类

public class TestAction {
    public String execute() {
        System.out.println("in execute method");
        return "success";
    }
}

我的成功JSP

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="ISO-8859-1">
    <title>Insert title here</title>
    </head>
    <body>
    <h1>success</h1>
    </body>
    </html>

我的错误JSP

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
            pageEncoding="ISO-8859-1"%>
        <!DOCTYPE html>
        <html>
        <head>
        <meta charset="ISO-8859-1">
        <title>Insert title here</title>
        </head>
        <body>
        <h1>error.jsp</h1>
        </body>
        </html>

enter image description here

吾道

enter image description here

java xml jsp struts2
1个回答
0
投票

请看 如何询问 页面。

在S2配置中,你表示你的JSP文件在网页内容的根部。不是的,它们在下面的 WEB-INF 目录,所以你的结果应该反映出这一点,例如。

<result name="success">/WEB-INF/success.jsp</result>

也不清楚你是如何部署应用的,例如,应用上下文可能是,也可能不是。struts2Test 所以你也需要弄清楚这一点。

© www.soinside.com 2019 - 2024. All rights reserved.