I use JBoss AS 7.1.1 final and I've one problem when I try to deploy the application:
JBAS014775: New missing/unsatisfied dependencies: service jboss.naming.context.java."\n\t\t\tjava:jboss".datasources."carsDS\n\t\t"
(missing) dependents: [service jboss.persistenceunit."springTest.war#carsPU"] 20:33:58,250 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) {"JBAS014653: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-2" => {"JBAS014771: Services with missing/unavailable dependencies" => ["jboss.persistenceunit.\"springTest.war#carsPU\"jboss.naming.context.java.\"\n\t\t\tjava:jboss\".datasources.\"carsDS\n\t\t\"Missing[jboss.persistenceunit.\"springTest.war#carsPU\"jboss.naming.context.java.\"\n\t\t\tjava:jboss\".datasources.\"carsDS\n\t\t\"]"]}}}
This is my standalone.xml file:
<drivers>
<driver module="com.h2database.h2" name="h2">
<xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
</driver>
<driver module="com.mysql" name="com.mysql">
<xa-datasource-class>com.mysql.jdbc.jdbc2.optional.MysqlXADataSource</xa-datasource-class>
</driver>
</drivers>
<datasource enabled="true" jndi-name="java:jboss/datasources/carsDS"
pool-name="carsDS">
<connection-url>jdbc:mysql://localhost:3306</connection-url>
<driver>com.mysql</driver>
<pool>
<min-pool-size>10</min-pool-size>
<max-pool-size>100</max-pool-size>
<prefill>true</prefill>
</pool>
<security>
<user-name>michal</user-name>
<password>michal</password>
</security>
<statement>
<prepared-statement-cache-size>32</prepared-statement-cache-size>
<share-prepared-statements />
</statement>
</datasource>
and persistence.xml:
<persistence
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_1_0.xsd"
version="1.0">
<persistence-unit name="carsPU" transaction-type="JTA" >
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>
java:jboss/datasources/carsDS
</jta-data-source>
<class>pl.springtest.carEntity</class>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5Dialect"/>
<property name="hibernate.hbm2ddl.auto" value="create-drop" />
</properties>
</persistence-unit>
</persistence>
Please tell me what is wrong.
transaction-type="JTA"in the persistence.xml, turning<persistence-unit name="carsPU" transaction-type="JTA" >into<persistence-unit name="carsPU">. - acdcjuniorjta="true"in the standalone.xml:<datasource enabled="true" jndi-name="java:jboss/datasources/carsDS" pool-name="carsDS" jta="true">- acdcjuniorjta="true"I just told you and add ause-java-context="true"in the same place. Also, for this try, removetransaction-type="JTA". - acdcjuniorpersistence.xml, removing those line breaks in<jta-data-source>. MAke it just in one line:, like<jta-data-source>java:jboss/datasources/carsDS</jta-data-source>- acdcjunior