struts错误:请求的资源不可用

时间:2016-02-19 23:28:34

标签: java struts2

在运行示例struts程序时需要帮助,它正在抛出"请求的资源不可用"错误。

我正在使用struts-2.3.24.1和Tomcat 8。

The Project structure

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>SampleStruts</display-name>
      <welcome-file-list>
        <welcome-file>login.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>

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>
          <constant name="struts.devMode" value="true" />
          <package name="default" namespace="/" extends="struts-default">
            <action name="login" class="com.sr.actions.LoginAction" >
                <result name="success"> /welcome.jsp </result>
                <result name="failed"> /failed.jsp </result>
            </action>
       </package>

       </struts>

请告诉我如何解决此问题。

1 个答案:

答案 0 :(得分:1)

不一致的库依赖项在依赖项管理中最常见的错误。您在项目依赖项中没有重要的库。

解决错误需要for (z = 0; ip[z] ...

了解如何documentation