问题描述
我试图将JPA设置为我的RESTful webapi,以便在数据库上提供CRUD服务.我收到错误Could not find any META-INF/persistence.xml file in the classpath
,但实际上在文件夹META-INF
I am tryig to set up JPA to my RESTful webapi in order to make CRUD services on database. I am getting the error Could not find any META-INF/persistence.xml file in the classpath
But actually ther in a persistence.xml in the folder META-INF
1 [main] INFO org.hibernate.cfg.annotations.Version - Hibernate Annotations 3.5.6-Final
17 [main] INFO org.hibernate.cfg.Environment - Hibernate 3.5.6-Final
20 [main] INFO org.hibernate.cfg.Environment - hibernate.properties not found
23 [main] INFO org.hibernate.cfg.Environment - Bytecode provider name : javassist
27 [main] INFO org.hibernate.cfg.Environment - using JDK 1.4 java.sql.Timestamp handling
110 [main] INFO org.hibernate.annotations.common.Version - Hibernate Commons Annotations 3.2.0.Final
115 [main] INFO org.hibernate.ejb.Version - Hibernate EntityManager 3.5.6-Final
129 [main] INFO org.hibernate.ejb.Ejb3Configuration - Could not find any META-INF/persistence.xml file in the classpath
Exception in thread "main" javax.persistence.PersistenceException: No Persistence provider for EntityManager named KAPAPLAN
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:54)
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:32)
at de.ham.ti.kapaplan.database.DBCon.main(DBCon.java:20)
这是我的persistence.xml
here my persistence.xml
<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="KAPAPLAN" transaction-type="JTA">
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
<class>de.ham.ti.kapaplan.model</class>
<properties>
<!-- Configuring JDBC properties -->
<property name="javax.persistence.jdbc.url" value="jdbc:oracle:thin:@//***db-domain***/***service-name***" />
<property name="javax.persistence.jdbc.user" value="***user***" />
<property name="javax.persistence.jdbc.password" value="***pw***" />
<property name="javax.persistence.jdbc.driver" value="com.mysema.query.jpa.support.ExtendedOracleDialect" />
<!-- Hibernate properties -->
<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>
我仔细检查了类似的问题,但没有一个解决了我的问题.安的想法?
I double checked similar questions but non of them solved my issue. ann ideas?
编辑:我的Maven pom.xml
my Maven pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.ham.ti.kapaplan</groupId>
<artifactId>kapaplan</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>kapaplan</name>
<build>
<finalName>kapaplan</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<inherited>true</inherited>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>${jersey.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>3.5.6-Final</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
<!-- use the following artifactId if you don't need servlet 2.x compatibility -->
<!-- artifactId>jersey-container-servlet</artifactId -->
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-moxy</artifactId>
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0</version>
</dependency>
</dependencies>
<properties>
<jersey.version>2.16</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
推荐答案
我认为您的项目配置错误. META-INF文件夹应保留在Web Maven项目的src/main/webapp
中的src/main/resources和WEB-INF文件夹中.这是一个示例,其中我通过网络api进行了一些CRUD.
I think your project is misconfigured. META-INF folder should stay in src/main/resources and WEB-INF folder in src/main/webapp
of your web maven project. Here is an example where I do some CRUD over web api.
这篇关于在类路径中找不到任何META-INF/persistence.xml文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!