gpt4 book ai didi

java - 错误404;类型状态报告;描述请求的资源不可用对于我的 struts2 应用程序

转载 作者:行者123 更新时间:2023-11-28 23:59:54 26 4
gpt4 key购买 nike

<分区>

我在执行我的 struts2 应用程序时收到 404 错误。我在 apache tomcat 8 上运行了应用程序,我正在使用 eclipse。我在浏览器的 url 末尾附加了/Tutorials/getTutorial.action,它应该将控制权转移到 success.jsp,但仍然出现 404 错误。我的代码是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="default" extends="struts-default" namespace="/Tutorials">
<action name="getTutorial" class="org.gurjot.javabrains.action">
<result name="success">/success.jsp</result>
<result name="failure">/error.jsp</result>
</action>
</package>
</struts>

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>StartingWithStruts2</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.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>

FirstAction.java

package org.gurjot.javabrains.action;
public class FirstAction {
public String execute()
{ System.out.println("hi");
return "success";


}

}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com