jboss eap-6.1 无法处理部署“education.war”的阶段 POST_MODULE

Posted

技术标签:

【中文标题】jboss eap-6.1 无法处理部署“education.war”的阶段 POST_MODULE【英文标题】:jboss eap-6.1 Failed to process phase POST_MODULE of deployment \"education.war\" 【发布时间】:2014-01-02 19:49:51 【问题描述】:

用过hibernate,spring mvc。文件:

web.xml

    <web-app version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

    <display-name>Spring MVC Application</display-name>
<filter>
        <filter-name>springSecurityFilterChain</filter-name>
        <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>springSecurityFilterChain</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    <servlet>
        <servlet-name>mvc-dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>mvc-dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>mvc-dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>mvc-dispatcher</servlet-name>
        <url-pattern>*.css</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>mvc-dispatcher</servlet-name>
        <url-pattern>*.js</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>mvc-dispatcher</servlet-name>
        <url-pattern>*.gif</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>mvc-dispatcher</servlet-name>
        <url-pattern>*.jpg</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>mvc-dispatcher</servlet-name>
        <url-pattern>*.png</url-pattern>
    </servlet-mapping>
</web-app>

主上下文文件

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"

        >
    <context:component-scan base-package="com.education"/>
    <context:component-scan base-package="com.education.controllers"/>

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/pages/"/>
        <property name="suffix" value=".jsp"/>
    </bean>
    <mvc:annotation-driven />
    <mvc:resources mapping="/resources/**" location="/resources/" />
    <import resource="root-context.xml" />
</beans>

根上下文.xml

<?xml  version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:jee="http://www.springframework.org/schema/jee" xmlns:lang="http://www.springframework.org/schema/lang"
       xmlns:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:util="http://www.springframework.org/schema/util"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd
        http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">


    <context:annotation-config />


    <context:component-scan base-package="com.education.Dao" />
    <context:component-scan base-package="com.education.Service" />

    <import resource="data.xml" />


    <import resource="security.xml" />

</beans>

在我成功编译和运行这个应用程序之前,然后添加休眠代码和这个xml文件并遇到错误。

错误代码

16:40:50,403 错误 [org.jboss.as.server](管理处理程序线程 - 12) JBAS015870:部署“education.war”的部署被回滚 带有以下失败消息:“JBAS014671:失败的服务”=> "jboss.deployment.unit.\"education.war\".POST_MODULE" => “服务中的 org.jboss.msc.service.StartException jboss.deployment.unit.\"education.war\".POST_MODULE: JBAS018733: 未能处理部署“education.war”的阶段 POST_MODULE 引起:java.lang.LinkageError: 无法链接 org/springframework/web/filter/GenericFilterBean (Module \"deployment.education.war:main\" 来自服务模块加载器) 引起:java.lang.NoClassDefFoundError: org/springframework/context/EnvironmentAware 引起:java.lang.ClassNotFoundException: org.springframework.context.EnvironmentAware from [Module \"deployment.education.war:main\" 来自服务模块加载器]" 16:40:50,533 INFO [org.jboss.as.server.deployment](MSC 服务 线程 1-7) JBAS015877: 停止部署education.war (运行时名称:education.war)在 130 毫秒内

【问题讨论】:

你用的是什么版本的 Spring? 3.2.0 发布版 【参考方案1】:

stacktrace 中的这一行说明了一切:

引起:java.lang.NoClassDefFoundError: org/springframework/context/EnvironmentAware 引起: java.lang.ClassNotFoundException: org.springframework.context.EnvironmentAware

如果使用 Maven,您需要将 spring-context 添加到您的 pom.xml 文件中:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>3.1.3.RELEASE</version>
</dependency>

请注意,版本可能因您的项目而异

【讨论】:

【参考方案2】:

我同意 Kevin 的观点,在您的情况下,类文件丢失了。因此,您必须放置包含这些类文件的 JAR。但是我在 Linux 服务器上遇到了这个问题。该问题与文件权限问题有关。在这种情况下,由于错误消息或日志没有清楚地表明问题,因此很难发现问题。通常 Linux 在权限问题上是好的。我以 root 用户身份创建 WAR 文件,但以 jboss 用户身份运行 jboss 服务器。最后,我必须“sudo -su jboss”(运行 Jboss 服务器的用户)并创建/部署我的工件。

【讨论】:

以上是关于jboss eap-6.1 无法处理部署“education.war”的阶段 POST_MODULE的主要内容,如果未能解决你的问题,请参考以下文章

JBoss EAP 6.1 上的 Atmosphere 和 WebSocket

无法将 Jvisual Vm 与 Jboss EAP 6.1 集成

jconsole 未检测到 jboss eap 6.1

如何在 JBoss EAP 6.1 中设置 http 头文件

JBoss EAP 6.1 的 Infinispan 超时异常

JBoss EAP 6.1+ 上的 JDBC 模块