请在我的第一个Struts2应用程序编码中告诉我导致错误的原因("资源不可用")以及如何修复它。
STRUTS.XML
<?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" extends="struts-default">
<action name="getdata" class="com.hardik.actions.TutorialAction">
<result name="success">/success.jsp</result>`enter code here`
<result name="failure">/errror.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://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>struts2Started</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>
指南行动课程
public class TutorialAction {
public String execute()
{
System.out.println("hello");
return "success";
}
}
我已将所有jar包含在lib文件夹中,并且它们位于构建路径中
我正在使用struts-2.3.16.1
我正在尝试执行此网址
答案 0 :(得分:0)
您可以将struts.xml放在classes文件夹中。只需在WEB-INF目录中创建一个名为classes的文件夹,然后检查您的操作是否正在调用。