2014-10-29 92 views
0

我有一個java web應用程序。此應用程序使用JPA進行持久化。持久性由Spring管理。此應用程序可以輕鬆部署在Tomcat上,只需將war文件放入webapps即可。但是在JBoss中部署這個應用程序幾天後對我來說成了一場噩夢。我無法在此網站上找到合適的帖子來解決此問題。如何在JBoss 6.3上部署Spring管理的JPA應用程序EAP

+0

它是顯示一些錯誤,或者你只是不知道在哪裏部署? – 2014-10-29 06:36:32

回答

5

首先,你需要配置一個數據源(我使用的是mysql數據庫)。我的JBoss安裝在C:\jboss-eap-6.3\下,我用的是windows操作系統。 步驟: 1.在C:\jboss-eap-6.3\modules下創建一個目錄結構com\mysql\main。您將以C:\jboss-eap-6.3\modules\com\mysql\main目錄結構結束。 2.在main目錄中創建一個xml文件module.xml。另外在同一個目錄中放入mysql驅動程序jar mysql-connector-java-5.1.23-bin.jar。最後,您將在C:\jboss-eap-6.3\modules\com\mysql\main中有module.xmlmysql-connector-java-5.1.23-bin.jar。 3.複製以下xml內容module.xml

<?xml version="1.0" encoding="UTF-8"?> 
<module xmlns="urn:jboss:module:1.0" name="com.mysql"> 
    <resources> 
     <resource-root path="mysql-connector-java-5.1.23-bin.jar"/> 
    </resources> 
    <dependencies> 
     <module name="javax.api"/> 
     <module name="javax.transaction.api"/> 
    </dependencies> 
</module> 

4.找到C:\jboss-eap-6.3\standalone\configuration目錄中的文件standalone.xml。用你最喜歡的文本編輯器打開這個文件。找到datasource子系統,即此行<subsystem xmlns="urn:jboss:domain:datasources:1.2">。在drivers元素下添加xml片段。

<driver name="mysqlDriver" module="com.mysql"> 
    <xa-datasource-class>com.mysql.jdbc.Driver</xa-datasource-class> 
</driver> 

添加下面的xml片段下datasources元素:

<datasource jndi-name="java:jboss/datasources/MYSQLDATASOURCE" pool-name="MYSQLDATASOURCE" enabled="true" use-java-context="true"> 
    <connection-url>jdbc:mysql://localhost:3306/databaseName</connection-url> 
    <driver>mysqlDriver</driver> 
    <security> 
    <user-name>root</user-name> 
    <password>databasepassword</password> 
    </security> 
</datasource> 

在這一點上,你與datasource配置完成。

接下來是配置您的persistence.xmlapplicationContext.xml的persistence.xml

<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"> 

    <persistence-unit name="erPU"> 
     <class>..</class> <!--Contains all your Entity classes--> 
     <properties>    
      <property name="hibernate.show_sql" value="false" /> 
      <property name="hibernate.format_sql" value="false" /> 
      <property name="jboss.as.jpa.providerModule" value="application" /> 
      <property name="jboss.as.jpa.managed" value="false" /> 
      <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>   
     </properties> 
    </persistence-unit>  
</persistence> 

<!--jboss.as.jpa.providerModule  is the name of the persistence provider module (default is org.hibernate). Should be hibernate3-bundled if Hibernate 3 jars are in the application archive (adapterModule and adapterClass will automatically be set for hibernate3-bundled). Should be application, if a persistence provider is packaged with the application. --> 
<!--jboss.as.jpa.managed can be set to false to disable container managed JPA access to the persistence unit. The default is true, which enables container managed JPA access to the persistence unit. This is typically set to false for Seam 2.x + Spring applications. --> 

的applicationContext.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:context="http://www.springframework.org/schema/context" 
     xmlns:jee="http://www.springframework.org/schema/jee" 
     xmlns:tx="http://www.springframework.org/schema/tx"  

     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd 
      http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd 
      http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd 
"> 

    <context:annotation-config /> 
    <context:component-scan base-package="..." /><!--Package base name to scan for annotations -->   

    <jee:jndi-lookup id="dataSource" jndi-name="java:jboss/datasources/MYSQLDATASOURCE" expected-type="javax.sql.DataSource"/>  
    <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> 
     <property name="dataSource" ref="dataSource" /> 
     <property name="packagesToScan" value="..." /><!--Packages to scan for entities--> 
     <property name="persistenceUnitName" value="erPU" /> 
     <property name="persistenceXmlLocation" value="classpath*:META-INF/persistence.xml"/> 
     <property name="jpaVendorAdapter"> 
      <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"> 
       <property name="showSql" value="false" /> 
      </bean> 
     </property> 
     <property name="jpaPropertyMap"> 
      <map> 
       <entry key="hibernate.hbm2ddl.auto" value="update" /> 
       <entry key="hibernate.format_sql" value="false" /> 
       <entry key="hibernate.show_sql" value="false" /> 
       <entry key="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect" /> 
      </map> 
     </property> 
    </bean>  
    <bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor"/> 
    <bean class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor"/> 
    <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> 
     <property name="entityManagerFactory" ref="entityManagerFactory" /> 
    </bean> 
    <tx:annotation-driven transaction-manager="transactionManager"/> 
</beans> 

注:無論persistence.xml的位置,你需要告訴春天在persistence.xml所在。該literature below was extracted from

Using Spring-managed persistence units 

Spring applications running in JBoss AS7 may also create persistence units on their own, using the LocalContainerEntityManagerFactoryBean. This is what these applications need to consider: 
Placement of the persistence unit definitions 

When the application server encounters a deployment that has a file named META-INF/persistence.xml (or, for that matter, WEB-INF/classes/META-INF/persistence.xml), it will attempt to create a persistence unit based on what is provided in the file. In most cases, such definition files are not compliant with the Java EE requirements, mostly because required elements such as the datasource of the persistence unit are supposed to be provided by the Spring context definitions, which will fail the deployment of the persistence unit, and consequently of the entire deployment. 

Spring applications can easily avoid this type of conflict, by using a feature of the LocalContainerEntityManagerFactoryBean which is designed for this purpose. Persistence unit definition files can exist in other locations than META-INF/persistence.xml and the location can be indicated through the persistenceXmlLocation property of the factory bean class. 

Assuming that the persistence unit is in the META-INF/jpa-persistence.xml, the corresponding definition can be: 
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> 
     <property name="persistenceXmlLocation" value="classpath*:META-INF/jpa-persistence.xml"/> 
     <!-- other definitions --> 
</bean> 

WEB-INF/jboss的部署,structure.xml 最後,您需要WEB-INF下創建jboss-deployment-structure.xml。該文件的內容應該是:

<jboss-deployment-structure xmlns="urn:jboss:deployment-structure:1.0"> 
    <deployment> 
    <exclusions> 
     <module name="org.hibernate"/> 
    </exclusions> 
    </deployment> 
</jboss-deployment-structure> 

這樣做的原因是:

Since the LocalContainerEntityManagerFactoryBean and the corresponding HibernateJpaVendorAdapter are based on Hibernate 3, it is required to use that version with the application. Therefore, the Hibernate 3 jars must be included in the deployment. At the same time, due the presence of @PersistenceUnit or @PersistenceContext annotations on the application classes, the application server will automatically add the 'org.hibernate' module as a dependency. 

This can be avoided by instructing the server to exclude the module from the deployment's list of dependencies. 

最後,您的應用程序捆綁在一起的JPA庫必須版本3.x

相關問題