gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 22:17:46 25 4
gpt4 key购买 nike

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

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

Could not find any META-INF/persistence.xml file in the classpath

以及以下异常:

No Persistence provider for EntityManager named mim_ajuda

<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();
}<br/>
return entityManager;
}

在我进一步处理之前,我已经搜索了放置 persistence.xml 的位置并根据 THIS页面和其他几个用户,XML 必须位于 war 文件(我的是)内的“WEB-INF/classes/META-INF/persistence.xml”目录中:

WAR directory Image

总结:

  1. 自动化测试在离线运行和使用 entityManager 时工作得很好
  2. 只有当我调用网络服务 API 时才会出现此错误
  3. persinstence.xml 文件遵循其他问题中显示的路径。

最佳答案

找到解决方案。解析器区分大小写,因此找不到我的 Persistence.xml。重命名为 persistence.xml 就可以了

关于xml - 在 WebProject 的类路径中找不到任何 META-INF/persistence.xml 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38022006/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com