我正在尝试使用Spring Data / Crud Repository(.save)在DB中保存一个Entity,其中包含另一个通过@Cache方法加载的实体。换句话说,我正在尝试保存其中包含Attributes实体的Ad Entity,并使用Spring @Cache加载这些属性。
因此,我有一个被分离的实体传递给持久异常。
我的问题是,有没有办法保存实体仍然使用@Cache作为属性?
我查了一下,但找不到任何人这样做,特别是知道我使用的CrudRepository只有方法.save(),据我所知管理Persist,Update,Merge等。
非常感谢任何帮助。
提前致谢。
Ad.java
@Entity
@DynamicInsert
@DynamicUpdate
@Table(name = "ad")
public class Ad implements SearchableAdDefinition {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@ManyToOne(fetch = FetchType.LAZY, optional = false)
private User user;
@OneToMany(mappedBy = "ad", fetch = FetchType.LAZY, cascade = CascadeType.ALL)
private Set<AdAttribute> adAttributes;
(.....) }
AdAttribute.java
@Entity
@Table(name = "attrib_ad")
@IdClass(CompositeAdAttributePk.class)
public class AdAttribute {
@Id
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "ad_id")
private Ad ad;
@Id
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "attrib_id")
private Attribute attribute;
@Column(name = "value", length = 75)
private String value;
public Ad getAd() {
return ad;
}
public void setAd(Ad ad) {
this.ad = ad;
}
public Attribute getAttribute() {
return attribute;
}
public void setAttribute(Attribute attribute) {
this.attribute = attribute;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
@Embeddable
class CompositeAdAttributePk implements Serializable {
private Ad ad;
private Attribute attribute;
public CompositeAdAttributePk() {
}
public CompositeAdAttributePk(Ad ad, Attribute attribute) {
this.ad = ad;
this.attribute = attribute;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CompositeAdAttributePk compositeAdAttributePk = (CompositeAdAttributePk) o;
return ad.getId().equals(compositeAdAttributePk.ad.getId()) && attribute.getId().equals(compositeAdAttributePk.attribute.getId());
}
@Override
public int hashCode() {
return Objects.hash(ad.getId(), attribute.getId());
}
}
用于加载属性的方法:
@Cacheable(value = "requiredAttributePerCategory", key = "#category.id")
public List<CategoryAttribute> findRequiredCategoryAttributesByCategory(Category category) {
return categoryAttributeRepository.findCategoryAttributesByCategoryAndAttribute_Required(category, 1);
}
用于创建/保留广告的方法:
@Transactional
public Ad create(String title, User user, Category category, AdStatus status, String description, String url, Double price, AdPriceType priceType, Integer photoCount, Double minimumBid, Integer options, Importer importer, Set<AdAttribute> adAtributes) {
//Assert.notNull(title, "Ad title must not be null");
Ad ad = adCreationService.createAd(title, user, category, status, description, url, price, priceType, photoCount, minimumBid, options, importer, adAtributes);
for (AdAttribute adAttribute : ad.getAdAttributes()) {
adAttribute.setAd(ad);
/* If I add this here, I don't face any exception, but then I don't take benefit from using cache:
Attribute attribute = attributeRepository.findById(adAttribute.getAttribute().getId()).get();
adAttribute.setAttribute(attribute);
*/
}
ad = adRepository.save(ad);
solrAdDocumentRepository.save(AdDocument.adDocumentBuilder(ad));
return ad;
}
答案 0 :(得分:2)
我不知道您是否仍然需要此答案,因为时间长了,您问了这个问题。但是我将在这里留下我的评论,其他人可能会从中获得帮助。
让我们假设,您从应用程序的其他部分调用了 findRequiredCategoryAttributesByCategory 方法。 Spring将首先检查缓存,但一无所获。然后它将尝试从数据库中获取它。因此,它将创建一个休眠会话,打开一个事务,获取数据,关闭事务和会话。最后,从函数返回后,它将结果集存储在缓存中以备将来使用。
您必须记住,当前处于高速缓存中的那些值是使用休眠会话(现在已关闭)获取的。因此它们与任何会话都没有关系,并且现在处于分离状态。
现在,您正在尝试保存和广告实体。为此,spring创建了一个新的休眠会话,并将 Ad 实体附加到该特定会话。但是,从缓存中获取的属性对象是分离的。因此,当您尝试保留广告实体时,会收到独立实体异常
要解决此问题,您需要将这些对象重新连接到当前的休眠会话。我使用 merge()方法。 来自https://docs.jboss.org/hibernate/orm/3.5/javadocs/org/hibernate/Session.html
的休眠文档将给定对象的状态复制到具有相同标识符的持久对象上。如果当前没有与该会话关联的持久性实例,则将其加载。返回持久实例。如果给定实例未保存,请保存的副本并将其作为新的持久实例返回。给定的实例不与会话关联。如果关联是通过cascade =“ merge”映射的,则此操作将级联到关联的实例。
简单地说,这会将您的对象附加到休眠会话。 调用 findRequiredCategoryAttributesByCategory 方法后,应该做的是编写
List attributesFromCache = someService.findRequiredCategoryAttributesByCategory();
List attributesAttached = entityManager.merge( attributesFromCache );
现在将属性设置附加到您的Ad对象。这不会引发异常,因为属性列表现在是当前Hibernate会话的一部分。