![JAR search and dependency download from the Maven repository](/logo.png)
eu.drus.jpa.unit.cdi.JpaUnitCdiExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpa-unit-cdi Show documentation
Show all versions of jpa-unit-cdi Show documentation
Makes JPA Unit usable in CDI test environment
The newest version!
package eu.drus.jpa.unit.cdi;
import javax.enterprise.event.Observes;
import javax.enterprise.inject.spi.Extension;
import javax.enterprise.inject.spi.ProcessProducer;
import javax.persistence.EntityManager;
public class JpaUnitCdiExtension implements Extension {
public void registerProducer(@Observes final ProcessProducer pb) {
pb.setProducer(new EntityManagerProducerProxy(pb.getProducer()));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy