- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 Hibernate 5.2.11 作为 JPA 提供程序。我有一个带注释的类 (PurchaseOrder) 和另一个带注释的类 (Customer) 作为具有多对一关系的字段。但因为遗留代码在不同的数据库中具有 Customer 和 PO 表,所以我在 PurchasingOrder 中调用 EntityManager 的 getReference() 以返回 Customer 实例。我通过使用 Hibernate 的自制类访问这些内容(详细信息如下)。这会导致以下异常:
org.hibernate.LazyInitializationException:无法初始化代理 - 无 session
我一直在阅读 Hibernate、JPA 和 Java EE 文档,但一直无法弄清楚我做错了什么。我知道 Hibernate 在幕后使用 Session 来启用 JPA 功能,但是当我访问 .getCustomer() 时,我正在创建一个新的 EntityManager,因此它应该具有所需的 session 。
很明显,我缺少一个关键的理解,但我不知道它是什么。谁能帮我解答一下吗?
这是采购订单的重要部分,它由字符串、整数、 boolean 值和 LocalDates 组成(即:它们都是 @Basic 字段),而 Customer 作为唯一包含的类:
@Entity
@Table(name = "PurchaseOrder")
public class PurchaseOrder extends BaseEntity { // BaseEntity is a @mappedSuperclass containing the primary key info only.
...
private Integer customerID;
private Customer customer;
...
@Column(name = "customerID")
public Integer getCustomerID() {
return customerID;
}
public void setCustomerID(Integer customerID) {
this.customerID = customerID;
}
@Transient
public Customer getCustomer() {
LOG.info("Getting customer #{}", customerID);
if (customerID != 0 && (customer == null || !customerID.equals(customer.getId()))) {
customer = VdtsSysDB.getDB().get(Customer.class, customerID);
}
return customer;
}
public void setCustomer(Customer customer) {
this.customer = customer;
this.customerID = customer.getId();
}
...
这是客户,仅包含 @Basic 字段:
@Entity
@Table(name = "Customers")
public class Customer extends BaseEntity{
private String custNo;
private String businessName;
private String contact;
...
@Column(name = "custNo")
public String getCustNo() {
return custNo;
}
public void setCustNo(String custNo) {
this.custNo = custNo;
}
@Column(name = "Name")
public String getBusinessName() {
return businessName;
}
public void setBusinessName(String businessName) {
this.businessName = businessName;
}
@Column(name = "Contact")
public String getContact() {
return contact;
}
public void setContact(String contact) {
this.contact = contact;
}
...
这是我的 Hibernate 实用程序类:
public class VdtsSysDB {
private EntityManagerFactory entityManagerFactory;
private static VdtsSysDB vdtsSysDB;
public static VdtsSysDB getDB() {
if (vdtsSysDB == null) {
vdtsSysDB = new VdtsSysDB();
}
return vdtsSysDB;
}
private VdtsSysDB() {
if (entityManagerFactory == null)
entityManagerFactory = Persistence.createEntityManagerFactory("VDTS_SYSDB");
}
public EntityManager getEntityManager() {
return entityManagerFactory.createEntityManager();
}
public void closeEntityManager(EntityManager entityManager) {
try {
entityManager.close();
} catch (Exception e) {
// Exception logging.
}
}
...
/**
* Issues an HQL Query and returns the results as a list.
*
* @param queryString - An HQL query.
* @return A list of items representing the returned dataset.
*/
public <T extends BaseEntity> List<T> query(String queryString) {
List<T> results = null;
LOG.info("Query: {}", queryString);
EntityManager entityManager = null;
try {
entityManager = getEntityManager();
results = entityManager.createQuery(queryString).getResultList();
entityManager.close();
LOG.info("Returned {} results.", results.size());
} catch (Exception e) {
if (entityManager != null && entityManager.isOpen()) entityManager.close();
LOG.error("Unable to complete query {}.", queryString, e);
}
return results;
}
/**
* Get an object from the database by specifying its class and its ID.
* @param aClass the class type to be returned.
* @param id the primary key to the item to be returned.
* @param <T> the class type to be returned.
* @return A single instance of the specified item of this class.
*/
public <T extends BaseEntity> T get(Class aClass, Integer id) {
LOG.info("Get #: {}, {}", id, aClass.getName());
T result = null;
EntityManager entityManager = null;
try {
entityManager = getEntityManager();
Object object = entityManager.getReference(aClass, id);
result = (T) object;
} catch (Exception e) {
LOG.error("Could not get {}", id, e);
} finally {
closeEntityManager(entityManager);
}
return result;
}
}
引发异常的代码是 JavaFX 8 应用程序 Controller 的一部分。在类加载时调用initialize(),而在显示附加的GUI 时调用refreshPane()。调用 Customer.getBusinessName() 时会引发异常。
@FXML
private TableView<PurchaseOrder> poTable;
@FXML
private TableColumn<PurchaseOrder, String> poNoCol;
@FXML
private TableColumn<PurchaseOrder, String> customerNameCol;
@FXML
private TableColumn<PurchaseOrder, LocalDate> orderDateCol;
@Override
protected void initialize() {
super.initialize();
poTable.getSelectionModel().selectedItemProperty().addListener(
(observable, oldValue, newValue) -> {
if (newValue != null) selectItem();
});
poNoCol.setCellValueFactory(new PropertyValueFactory<>("purchaseOrderNo"));
customerNameCol.setCellValueFactory(param -> {
PurchaseOrder po = param.getValue();
Customer customer = po.getCustomer();
String name = customer.getBusinessName(); /****** This is the line that throws the exception ******/
StringProperty observableString = new SimpleStringProperty(name);
return observableString;
});
orderDateCol.setCellValueFactory(new PropertyValueFactory<>("orderDate"));
...
}
@Override
protected void refreshPane() {
List<Customer> oList = VdtsSysDB.getDB().query("from Customer");
customerCombo.setItems(FXCollections.observableList(oList));
changeTable();
clearWidgets();
enableWidgets(false);
}
private void changeTable() {
poTable.getSelectionModel().clearSelection();
List<PurchaseOrder> oList = VdtsSysDB.getDB()
.query("from PurchaseOrder where closed = " + (openRadio.isSelected() ? "0" : "1"));
poTable.setItems(FXCollections.observableList(oList));
}
...
异常的完整堆栈跟踪:
30-09-17 19:42:05.137 ERROR java.lang.Throwable - Exception in thread "JavaFX Application Thread" org.hibernate.LazyInitializationException: could not initialize proxy - no Session
30-09-17 19:42:05.137 ERROR java.lang.Throwable - at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:146)
30-09-17 19:42:05.138 ERROR java.lang.Throwable - at org.hibernate.proxy.AbstractLazyInitializer.getImplementation(AbstractLazyInitializer.java:259)
30-09-17 19:42:05.139 ERROR java.lang.Throwable - at org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer.invoke(JavassistLazyInitializer.java:73)
30-09-17 19:42:05.139 ERROR java.lang.Throwable - at ca.vdts.buchanan.model.Customer_$$_jvst799_9.getBusinessName(Customer_$$_jvst799_9.java)
30-09-17 19:42:05.139 ERROR java.lang.Throwable - at ca.vdts.buchanan.endtally.controllers.POController.lambda$initialize$1(POController.java:103)
30-09-17 19:42:05.140 ERROR java.lang.Throwable - at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:578)
30-09-17 19:42:05.140 ERROR java.lang.Throwable - at javafx.scene.control.TableColumn.getCellObservableValue(TableColumn.java:563)
30-09-17 19:42:05.140 ERROR java.lang.Throwable - at javafx.scene.control.TableCell.updateItem(TableCell.java:644)
30-09-17 19:42:05.141 ERROR java.lang.Throwable - at javafx.scene.control.TableCell.indexChanged(TableCell.java:468)
30-09-17 19:42:05.141 ERROR java.lang.Throwable - at javafx.scene.control.IndexedCell.updateIndex(IndexedCell.java:116)
30-09-17 19:42:05.141 ERROR java.lang.Throwable - at com.sun.javafx.scene.control.skin.TableRowSkinBase.updateCells(TableRowSkinBase.java:533)
30-09-17 19:42:05.141 ERROR java.lang.Throwable - at com.sun.javafx.scene.control.skin.TableRowSkinBase.init(TableRowSkinBase.java:147)
30-09-17 19:42:05.142 ERROR java.lang.Throwable - at com.sun.javafx.scene.control.skin.TableRowSkin.<init>(TableRowSkin.java:64)
30-09-17 19:42:05.142 ERROR java.lang.Throwable - at javafx.scene.control.TableRow.createDefaultSkin(TableRow.java:212)
30-09-17 19:42:05.142 ERROR java.lang.Throwable - at javafx.scene.control.Control.impl_processCSS(Control.java:872)
30-09-17 19:42:05.142 ERROR java.lang.Throwable - at javafx.scene.Node.processCSS(Node.java:9058)
30-09-17 19:42:05.143 ERROR java.lang.Throwable - at javafx.scene.Node.applyCss(Node.java:9155)
30-09-17 19:42:05.143 ERROR java.lang.Throwable - at com.sun.javafx.scene.control.skin.VirtualFlow.setCellIndex(VirtualFlow.java:1964)
30-09-17 19:42:05.143 ERROR java.lang.Throwable - at com.sun.javafx.scene.control.skin.VirtualFlow.getCell(VirtualFlow.java:1797)
30-09-17 19:42:05.143 ERROR java.lang.Throwable - at com.sun.javafx.scene.control.skin.VirtualFlow.getCellLength(VirtualFlow.java:1879)
30-09-17 19:42:05.144 ERROR java.lang.Throwable - at com.sun.javafx.scene.control.skin.VirtualFlow.computeViewportOffset(VirtualFlow.java:2528)
30-09-17 19:42:05.144 ERROR java.lang.Throwable - at com.sun.javafx.scene.control.skin.VirtualFlow.layoutChildren(VirtualFlow.java:1189)
30-09-17 19:42:05.144 ERROR java.lang.Throwable - at javafx.scene.Parent.layout(Parent.java:1087)
30-09-17 19:42:05.144 ERROR java.lang.Throwable - at javafx.scene.Parent.layout(Parent.java:1093)
30-09-17 19:42:05.145 ERROR java.lang.Throwable - at javafx.scene.Parent.layout(Parent.java:1093)
30-09-17 19:42:05.145 ERROR java.lang.Throwable - at javafx.scene.Parent.layout(Parent.java:1093)
30-09-17 19:42:05.145 ERROR java.lang.Throwable - at javafx.scene.Parent.layout(Parent.java:1093)
30-09-17 19:42:05.145 ERROR java.lang.Throwable - at javafx.scene.Parent.layout(Parent.java:1093)
30-09-17 19:42:05.146 ERROR java.lang.Throwable - at javafx.scene.Parent.layout(Parent.java:1093)
30-09-17 19:42:05.146 ERROR java.lang.Throwable - at javafx.scene.Parent.layout(Parent.java:1093)
30-09-17 19:42:05.146 ERROR java.lang.Throwable - at javafx.scene.Parent.layout(Parent.java:1093)
30-09-17 19:42:05.147 ERROR java.lang.Throwable - at javafx.scene.Scene.doLayoutPass(Scene.java:552)
30-09-17 19:42:05.147 ERROR java.lang.Throwable - at javafx.scene.Scene$ScenePulseListener.pulse(Scene.java:2397)
30-09-17 19:42:05.147 ERROR java.lang.Throwable - at com.sun.javafx.tk.Toolkit.lambda$runPulse$30(Toolkit.java:355)
30-09-17 19:42:05.147 ERROR java.lang.Throwable - at java.security.AccessController.doPrivileged(Native Method)
30-09-17 19:42:05.148 ERROR java.lang.Throwable - at com.sun.javafx.tk.Toolkit.runPulse(Toolkit.java:354)
30-09-17 19:42:05.148 ERROR java.lang.Throwable - at com.sun.javafx.tk.Toolkit.firePulse(Toolkit.java:381)
30-09-17 19:42:05.148 ERROR java.lang.Throwable - at com.sun.javafx.tk.quantum.QuantumToolkit.pulse(QuantumToolkit.java:510)
30-09-17 19:42:05.148 ERROR java.lang.Throwable - at com.sun.javafx.tk.quantum.QuantumToolkit.pulse(QuantumToolkit.java:490)
30-09-17 19:42:05.149 ERROR java.lang.Throwable - at com.sun.javafx.tk.quantum.QuantumToolkit.lambda$runToolkit$404(QuantumToolkit.java:319)
30-09-17 19:42:05.149 ERROR java.lang.Throwable - at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
30-09-17 19:42:05.150 ERROR java.lang.Throwable - at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
30-09-17 19:42:05.150 ERROR java.lang.Throwable - at com.sun.glass.ui.win.WinApplication.lambda$null$148(WinApplication.java:191)
30-09-17 19:42:05.150 ERROR java.lang.Throwable - at java.lang.Thread.run(Thread.java:745)
最佳答案
哦。为什么你只有在发布问题后才能找到答案?
由于我使用 EntityManager.getReference(),因此引发了此异常。
来自 Java EE JPA Javadocs:
Get an instance, whose state may be lazily fetched. If the requested instance does not exist in the database, the EntityNotFoundException is thrown when the instance state is first accessed. (The persistence provider runtime is permitted to throw the EntityNotFoundException when getReference is called.) The application should not expect that the instance state will be available upon detachment, unless it was accessed by the application while the entity manager was open.
我试图访问 Customer 的字段,getReference 是延迟获取的。在我关闭 EntityManager 之前这些字段尚未初始化,因此任何引用它们的尝试都必然会引发 LazyInitialization 异常。
这里的解决方案很明显:不要使用 getReference。请改用 EntityManager.find()。
关于java - 为什么 Hibernate JPA 在使用 getReference() 时抛出 LazyInitialization 异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46508036/
我有以下情况要解决,但无法正常工作(尝试了Hibernate和EclipseLink): Table_1: Column_A is Primary Key ... some other
我是 JPA 的新手,但必须在该技术中实现我的项目 我想做的是通过 CriteriaQuery 构建一些数据库查询,但不知道如何将参数列表传递给下面的代码: CriteriaBuilder qb =
我是 JPA 新手,注意到可以通过使用 @Version 注释实体中的字段来使用乐观锁定。我只是好奇,如果之前不存在,持久性提供程序是否会创建一个隐式版本字段。例如网站objectdb状态: "Whe
我有一个 JPA 查询 @Query(value = "SELECT SUM(total_price) FROM ... WHERE ...", nativeQuery = true) 当有匹配的记录
JPA 是否会尝试在已经持久(和非分离)的实体上级联持久化? 为了清楚起见,这是我的情况:我想保留一个新用户: public void addUser(){ //User is an enti
显然,OpenJPA。我也看到提到过 EclipseLink 和 Hibernate,但是在功能上有显着差异吗? 最佳答案 大多数差异来自提供者对 OSGi 的感知程度。例如,您可能需要自己将 Hib
我想将 JPA 用于 micronaut。为此,我使用 io.micronaut.data:micronaut-data-hibernate-jpa:1.0.0.M1 库。每当我运行应用程序并点击端点
我正准备为我的应用实现后端,现在我正在投影数据层。我期待着 Spring 。 最佳答案 Spring Data JPA 不是 JPA 实现。它提供了将数据访问层构建到底层 JPA 顶部的方法。您是否应
假设我有一个表 Item,其中包含一个名为 user_id 的列和一个表 User 以及另一个名为 Superuser 的列: CREATE TABLE Item(id int, user_id in
JPA 2.1 规范说: The entity class must not be final. No methods or persistent instance variables of the
我正在从事一个具有一些不寻常实体关系的项目,我在使用 JPA 时遇到了问题。有两个相关对象;用户,让我们称另一个 X。用户与 X 具有一对多和两个一对一的关系。它基本上看起来像这样 [用户实体] @O
我说的是 JavaEE 中的 JPA。在我读过的一本书中谈到: EntityManager em; em.find(Employee.class, id); “这是实体管理器在数据库中查找实例所需的所
我有 JPA 支持的 Vaadin 应用程序。此应用程序中的组件绑定(bind)到 bean 属性(通过独立的 EL 实现)。一些组件绑定(bind)到外部对象(或其字段),由@OneToOne、@O
是否可以使表中的外键唯一?假设我有实体 A 和 B。 答: @Entity class A extends Serializable { @Id private long id; @OneToOne
我在使用 JPA 时遇到了一点问题。考虑这种情况: 表 A (id_a) | 表 B (id_b, id_a) 我需要的是这样的查询: Select a.*, c.quantity from A as
我有一个由 JPA 管理的实体类,我有一个实体需要在其属性中记录更改。 JPA 是否提供任何方法来处理这种需求? 最佳答案 如果您使用 Hibernate 作为 JPA 提供程序,请查看 Hibern
我想实现以下架构: Table A: a_id (other columns) Table B: b_id (other columns) Table C: c_id (other columns)
我有一个愚蠢的问题。如果能做到的话那就太好了,但我并没有屏住呼吸。 我需要链接到我的 JPA 实体的表中的单个列作为所述 JPA 实体中的集合。有什么方法可以让我单独取回与该实体相关的列,而不必取回整
我有一个 Open JPA 实体,它成功连接了多对多关系。现在我成功地获取了整个表,但我实际上只想要该表中的 ID。我计划稍后调用数据库来重建我需要的实体(根据我的程序流程)。我只需要 ID(或该表中
这是我的一个实体的复合主键。 public class GroupMembershipPK implements Serializable{ private static final long
我是一名优秀的程序员,十分优秀!