我正在学习JPA,EJB和JBoss / WildFly。
我需要在我的应用程序中注入EntityManager
。我试图通过以下方式实现:
@Stateless
@LocalBean
public class ProductsService implements IProductsService {
@PersistenceContext(unitName = "myUnit")
EntityManager entityManager;
//....
}
我的persistence.xml
存档中的META-INF
目录中有.war
个文件:
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence" version="1.0">
<persistence-unit name="myUnit">
<jta-data-source>java:jboss/datasources/ExampleDS</jta-data-source>
<properties>
<property name="hibernate.hbm2ddl.auto" value="create" />
<property name="hibernate.show_sql" value="true"/>
</properties>
</persistence-unit>
</persistence>
JNDI数据源(java:jboss/datasources/ExampleDS
)是干净的WildFly安装中提供的默认数据源。
当我将我的应用程序部署到WildFly时,我收到以下错误:
JBAS011440: Can't find a persistence unit named myUnit in deployment "my-web-app.war".
我做错了什么?
答案 0 :(得分:6)
persistence.xml
始终位于{root-of-persistence-unit}/META-INF/ directory
。在war文件中,您必须将persistence.xml
放入WEB-INF/classes/META-INF
。
例如:
WEB-INF/classes/META-INF/persistence.xml
WEB-INF/web.xml
查看更多:Persistence Units