在WebProject上的类路径中找不到任何META-INF / persistence.xml文件

时间:2016-06-24 20:56:06

标签: xml maven tomcat web persistence.xml

在彻底搜索此论坛寻找答案后,我找不到与我相似的单一案例。

使用maven生成WAR文件管理器并部署我的服务器后,每次向需要创建DAO的API发送GET请求时,我都会在服务器控制台上收到以下警告:

  

在类路径中找不到任何META-INF / persistence.xml文件

以及以下例外:

  

没有名为mim_ajuda

的EntityManager的持久性提供程序
<persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence
http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"
version="2.1">


<persistence-unit name="mim_ajuda" transaction-type="RESOURCE_LOCAL">
  <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
  <exclude-unlisted-classes>false</exclude-unlisted-classes>
  <properties>
    <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost/mim_ajuda" />
    <property name="javax.persistence.jdbc.user" value="root" />
    <property name="javax.persistence.jdbc.password" value="B@ck3nd" />
    <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver" />
    <property name="hibernate.show_sql" value="true" />
    <property name="hibernate.format_sql" value="true" />
    <property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect" />
    <property name="hibernate.hbm2ddl.auto" value="validate" />
    <!-- Configuring Connection Pool -->
    <property name="hibernate.c3p0.min_size" value="5" />
    <property name="hibernate.c3p0.max_size" value="20" />
    <property name="hibernate.c3p0.timeout" value="500" />
    <property name="hibernate.c3p0.max_statements" value="50" />
    <property name="hibernate.c3p0.idle_test_period" value="2000" />
    </properties>
  </persistence-unit>
</persistence>'

代码的这一部分:

private EntityManager getEntityManager(){ EntityManagerFactory factory = Persistence .createEntityManagerFactory("mim_ajuda"); if(entityManager == null){ entityManager = factory.createEntityManager(); }
return entityManager; }

在我进一步研究之前,我已经搜索了将persistence.xml放在哪里,并根据THIS页面和其他几个用户,XML必须在&#34; WEB-INF中/classes/META-INF/persistence.xml" war文件中的目录(我的是):

WAR directory Image

总结:

  1. 自动化测试工作离线并使用entityManager
  2. 只有当我调用webservice API时才会收到此错误
  3. persinstence.xml文件遵循其他问题中显示的路径。

1 个答案:

答案 0 :(得分:1)

找到解决方案。解析器是CASE SENSITIVE,因此我找不到我的Persistance.xml。重命名为persistance.xml,你会没事的