我正在为我的jpa实体构建一个CRUD视图。一旦我用jpa容器检索了我的实体的实例,每次我选择一个实例时,我必须加载延迟初始化的集合(我将它加载到BeanItemContainer中)。所以我做了以下事情:
BeanItemContainer<ModelItem> beans =
new BeanItemContainer<ModelItem>(ModelItem.class);
Property property = item.getItemProperty(propertyID);
if (property.getType().equals(Collection.class)){
beans.addAll((Collection<? extends ModelItem>) property.getValue());
}
Class<? super ModelItem> clazz = beans.getBeanType();
PropertyDescriptor properties[]=PropertyUtils.getPropertyDescriptors(clazz);
ArrayList<Object> tablePropertiesList=new ArrayList<Object>();
for (PropertyDescriptor propertyDescriptor : properties) {
if (!(propertyDescriptor.getPropertyType().equals(Collection.class)) && !(propertyDescriptor.getName().equals("class"))){
tablePropertiesList.add(propertyDescriptor.getName());
}
}
Object tableProperties[]=transform(tablePropertiesList);
Table currentTable = collections.get(propertyID);
currentTable.setContainerDataSource(beans);
currentTable.setVisibleColumns(tableProperties);
在这种情况下,我得到了LazyInitializationException
Caused by: org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: com.windy.server.model.core.UserModel.favoriteUsersTo, no session or session was closed
如何使用vaadin框架解决此问题?
PS我使用Hibernate作为JPA实现
答案 0 :(得分:0)
这是由于访问时Hibernate延迟抓取关系(例如,在您的特定情况下访问“favoriteUsersTo”)并且没有可用于提取的Hibernate会话。
我建议您考虑使用JPAContainer。它将为您处理hibernate会话。