当前位置: 首页 > 知识库问答 >
问题:

没有名为xxx的EntityManager的持久性提供程序

王君墨
2023-03-14

在drools workbench中,我创建了java类来获取entitymanager,并在drl文件中使用它,但我的问题是

  1. 当我在workbench中创建新项目时,我会像maven一样创建项目结构

当我打电话给全班的时候,像贝娄一样

package demo.test;

import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;
import org.hibernate.jpa.HibernateEntityManagerFactory;
import org.hibernate.Session;

/**
 * This class was automatically generated by the data modeler tool.
 */

public class Factory implements java.io.Serializable {

    static final long serialVersionUID = 1L;

    public Factory() {
    }


public Session getSessionHibernate(){

  HibernateEntityManagerFactory ha = (HibernateEntityManagerFactory) Persistence
                .createEntityManagerFactory("flightdataunit");
        EntityManager emf = ha.createEntityManager();

        Session session = emf.unwrap(Session.class);

        session.beginTransaction().begin();
        return session;
}
}

persistence.xml像贝娄

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:orm="http://java.sun.com/xml/ns/persistence/orm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd http://java.sun.com/xml/ns/persistence/orm http://java.sun.com/xml/ns/persistence/orm_2_0.xsd">
    <persistence-unit name="flightdataunit" transaction-type="JTA">
        <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
        <jta-data-source>java:jboss/sqlserver/flightdata</jta-data-source>
        <class>demo.test.Aircraftfleetdetail</class>
        <class>demo.test.Flightdatacrew</class>
        <class>demo.test.Airfield</class>
        <class>demo.test.FlightdatacrewPK</class>
        <class>demo.test.Flighttype</class>
        <class>demo.test.Repository</class>
        <class>demo.test.Seatconfig</class>
        <class>demo.test.Aircraftidentity</class>
        <class>demo.test.Place</class>
        <class>demo.test.Flightdata</class>
        <exclude-unlisted-classes>true</exclude-unlisted-classes>
        <properties>
            <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
            <property name="hibernate.max_fetch_depth" value="3"/>
            <property name="hibernate.hbm2ddl.auto" value="update"/>
            <property name="hibernate.show_sql" value="false"/>
            <property name="hibernate.id.new_generator_mappings" value="false"/>
            <property name="hibernate.transaction.jta.platform" value="org.hibernate.service.jta.platform.internal.JBossAppServerJtaPlatform"/>
        </properties>
    </persistence-unit>
</persistence>

还有pom。类xml

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>demo</groupId>
  <artifactId>TEST</artifactId>
  <version>1.0</version>
  <name>TEST</name>
  <dependencies>
    <dependency>
      <groupId>sqlserver</groupId>
      <artifactId>jarfile</artifactId>
      <version>4.0</version>
    </dependency>
    <dependency>
      <groupId>org.hibernate</groupId>
      <artifactId>hibernate-entitymanager</artifactId>
      <version>5.1.0.Final</version>
    </dependency>
    <dependency>
      <groupId>org.hibernate.javax.persistence</groupId>
      <artifactId>hibernate-jpa-2.1-api</artifactId>
      <version>1.0.0.Final</version>
    </dependency>
    <dependency>
      <groupId>javax.persistence</groupId>
      <artifactId>persistence-api</artifactId>
      <version>1.0.2</version>
    </dependency>
    <dependency>
      <groupId>antlr</groupId>
      <artifactId>antlr</artifactId>
      <version>2.7.6</version>
    </dependency>
    <dependency>
      <groupId>commons-collections</groupId>
      <artifactId>commons-collections</artifactId>
      <version>3.2.2</version>
    </dependency>
    <dependency>
      <groupId>dom4j</groupId>
      <artifactId>dom4j</artifactId>
      <version>1.6.1</version>
    </dependency>
    <dependency>
      <groupId>org.hibernate.common</groupId>
      <artifactId>hibernate-commons-annotations</artifactId>
      <version>5.0.1.Final</version>
    </dependency>
    <dependency>
      <groupId>org.hibernate</groupId>
      <artifactId>hibernate-core</artifactId>
      <version>5.1.0.Final</version>
    </dependency>
    <dependency>
      <groupId>javax.transaction</groupId>
      <artifactId>jta</artifactId>
      <version>1.1</version>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.kie</groupId>
        <artifactId>kie-maven-plugin</artifactId>
        <version>6.3.0.Final</version>
        <extensions>true</extensions>
      </plugin>
    </plugins>
  </build>
</project>

当我试图调用工厂类时,我没有为名为XXX的持久性提供程序

新工厂类

package demo.test;

import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;
import org.hibernate.jpa.HibernateEntityManagerFactory;
import org.hibernate.Session;
import javax.ejb.Stateless;
import javax.persistence.PersistenceContext;
/**
 * This class was automatically generated by the data modeler tool.
 */

@Stateless                                                                            
public class Factory implements java.io.Serializable {

    static final long serialVersionUID = 1L;

    @PersistenceContext(unitName ="flightdataunit")
    EntityManager entityManager;

    public Factory() {
    }


public Session getSessionHibernate(){

        Session session = entityManager.unwrap(Session.class);


        return session;
}
}

共有1个答案

洪安顺
2023-03-14

您正在混合两种不同的东西。如果您使用JavaEE兼容的应用程序服务器,您实际上可以使用@PeristenceContext注释注入EntityManager。如果您想使用JPA,请不要尝试创建Hibernate会话(例如供应商特定的实现),并且绝对不要在您自己的-使用容器管理的事务上启动事务。

所以你需要

  • 使工厂成为@无状态会话bean(或有状态,取决于用法)

这是一个很好的资源,可以让你走上正轨:http://www.tutorialspoint.com/ejb/ejb_persistence.htm

 类似资料:
  • 问题内容: 我在目录下使用相同的名字。然后,我用以下代码调用它: 但是,我收到以下错误消息: 这是: 它应该在类路径中。但是,我得到了上面的错误。 问题答案: 在之后,定义持久性提供程序名称:

  • 我试图在Eclipse中测试我的hibernate maven应用程序,当我运行获取enttity类名称的方法时,我得到了以下异常: 这是persistence.xml: 这是使用以下方法的类: 波姆。xml: 我尝试更改持久性的版本号、更改xmlns、提供程序的名称,但仍然是例外。

  • 我在REST服务器上工作,同时学习EJB\Hibernate。当服务调用DAO时,我面临一个问题,即它找不到我的持久性单元。 在本例中,我得到“无法为unitName PersistenceUnit检索EntityManagerFactory” 然后我试试这个: null pom.xml

  • 我正在尝试调用persistence.xml来显示Netbean IDE中数据库中的一些数据。我已经查看并尝试了以前用户提出的不同方法,但我仍然无法解决这个问题。 我用这个来称呼持久性单元, 这是我试图运行文件时返回的结果, 这是第805行,错误似乎就是从这里产生的 如前所述, 我已经在持久化单元名称下添加了提供者, 我已经确保持久性是单元在META-INF文件夹中, 它在类路径中,所以我不确定错

  • 我正在使用JPA开发一个JavaSE应用程序。不幸的是,调用后我得到了: 下面你会发现: 调用并意外返回 我的坚持。xml文件 我的项目结构 我的代码片段: 我的坚持。xml: 我的项目结构:

  • 我得到了这个错误: 线程“main”javax中出现异常。坚持不懈PersistenceException:在javax上没有名为EmployeeDb的EntityManager的持久性提供程序。坚持不懈坚持不懈javax上的createEntityManagerFactory(Persistence.java:85)。坚持不懈坚持不懈staffManagement的createEntityMan