Fate questo:
1) Aggiungere jboss-classloading.xml a/src/main/webapp (sto usando Maven):
contenuti:
<?xml version="1.0" encoding="UTF-8"?>
<classloading xmlns="urn:jboss:classloading:1.0"
domain="$UNIQUE_DOMAIN_NAME"
export-all="NON_EMPTY"
import-all="false"
parent-first="false">
</classloading>
2) Modificare $ JBOSS_INSTALL_DIRECTORY/jboss-as/server/$ PROFILO/conf/bootstrap/deployers.xml, e aggiungere il seguente alla fine:
<bean name="IgnoreFilesDeployer"
class="org.jboss.deployers.vfs.spi.deployer.AbstractIgnoreFilesDeployer"
</bean>
3) Creare un file jboss-IGNORE.TXT nella cartella META-INF con seguente contenuto:
WEB-INF/classes/META-INF/persistence.xml
4) ho rinominato il mio persistence.xml per la primavera-persistence.xml e ha aggiunto il file nella context.xml come:
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceXmlLocation" value="classpath:/META-INF/spring-persistence.xml"/>
....
</bean>
5) I; ve; anche modificato spring-persistence.xml (salvato persistence_2_0.xsd nella cartella webapp \ META-INF) come
<persistence version="2.0"
xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="file:///persistence_2_0.xsd
http://java.sun.com/xml/ns/persistence">
....
</persistence>
In seguito ricevo ClassNotFoundException su rg.jboss.webbeans.integration.deployer.env.WebBeansBootstrapDeployer che è piuttosto strano, perché è una classe inclusa in jBoss 5.1. –