无法在Java中加载配置文件

时间:2013-11-17 20:55:37

标签: java eclipse tomcat configuration struts2

我正在研究JavaBrains教程,在完成课程后,Tomcat说:

SEVERE: Exception starting filter struts2

另外:

Caused by: Unable to load configuration. - action - file:/Users/jasonrodriguez/Java/apache-tomcat-7.0.47/wtpwebapps/TutorialFinder/WEB-INF/classes/struts.xml:8:83

Caused by: Action class [org.koushik.javabrains.action.TutorialAction] not found - action - file:/Users/jasonrodriguez/Java/apache-tomcat-7.0.47/wtpwebapps/TutorialFinder/WEB-INF/classes/struts.xml:8:83

我回去检查,我的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>TutorialFinder</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>

我的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" namespace="/tutorials" extends="struts-default">
        <action name="getTutorial" class="org.koushik.javabrains.action.TutorialAction">
            <result name="success">/success.jsp</result>
            <result name="failure">/error.jsp</result>
        </action>
    </package>
</struts>

我的库构建路径是正确的,但是当我运行Tomcat时,它告诉我资源不可用,因为我是新手,我不知道如何解决它,因为我的项目中没有任何红色x标记。我想也许在某个地方有一个不合适的文件,但它看起来很直接:

enter image description here

也许一双新鲜的眼睛可以捕捉到我错过的东西。昨天我在本教程中遇到了类似的问题,解决方案是在我的action标签中提供类路径中存在的类引用。但是,就我所知,该标签已经看起来正确了。我的目标是获得我创建,执行的业务服务。

2 个答案:

答案 0 :(得分:2)

您写错了包名:org.kouhsik.javabrains.action.TutorialAction应为org.koushik.javabrains.action.TutorialAction。可能只是一个错字或您使用重构工具来更改包名称。无论哪种方式,您都应该使用它,或者在配置中使用正确的引用来引用类标记中的操作。另一种方法是使用约定插件并通过注释创建配置。在这种情况下,您无需编写对操作或方法的引用,因为您将注释权限放在要配置的类或方法上。

答案 1 :(得分:0)

我知道它非常尴尬的建议/解决方案,但这对我有用,我在共享的lib目录中缺少struts-spring-plugin.jar。它存在于我的类路径中,但不存在于共享库中。

由于