gpt4 book ai didi

java - 具有 ManyToOne 保存操作的 Spring Data JPA 抛出 org.hibernate.PersistentObjectException

转载 作者:行者123 更新时间:2023-11-30 08:30:40 38 4
gpt4 key购买 nike

我正在试验 Spring Data JPA,但在保存 ManyToOne 关系时遇到问题。

@Entity
public class Customer {

@Id
@GeneratedValue(strategy=GenerationType.AUTO)
private Long id;
private String firstName;
private String lastName;


@ManyToOne(cascade=CascadeType.ALL)
private Address homeAddress;

protected Customer() {}
// getters and setters ...
}

许多客户可以有相同的地址:

 @Entity
public class Address {

@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;

private String postalCode;
private String city;
private String line1;
private String line2;
private String country;

public Address() {
// TODO Auto-generated constructor stub
}

// getters and setter
}

客户资料库

import org.springframework.data.jpa.repository.JpaRepository;

public interface CustomerRepository extends JpaRepository<Customer, Long> {

List<Customer> findByLastName(String lastName);
List<Customer> findByHomeAddress(Address address);

}

申请

@SpringBootApplication
public class Application {

private static final Logger log = LoggerFactory.getLogger(Application.class);

public static void main(String[] args) {
SpringApplication.run(Application.class);
}

@Bean
public CommandLineRunner demo(CustomerRepository repository) {
return (args) -> {



Address address1 = new Address("07093", "Brooklyn", "129 67th st", null, "USA");
Address address2 = new Address("03333", "Qeeens", "333 67th st", null, "USA");
// save a couple of customers
Customer jack = new Customer("Jack", "Bauer");

jack.setHomeAddress(address1);
repository.save(jack);
repository.save(new Customer("Chloe", "O'Brian",address1));

}
}

所以我试图用相同的地址保存两个客户,我得到以下异常:

Caused by: org.springframework.dao.InvalidDataAccessApiUsageException: detached entity passed to persist: hello.Address; nested exception is org.hibernate.PersistentObjectException: detached entity passed to persist: hello.Address
at org.springframework.orm.jpa.vendor.HibernateJpaDialect.convertHibernateAccessException(HibernateJpaDialect.java:299) ~[spring-orm-4.3.4.RELEASE.jar:4.3.4.RELEASE]
at org.springframework.orm.jpa.vendor.HibernateJpaDialect.translateExceptionIfPossible(HibernateJpaDialect.java:244) ~[spring-orm-4.3.4.RELEASE.jar:4.3.4.RELEASE]
at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.translateExceptionIfPossible(AbstractEntityManagerFactoryBean.java:491) ~[spring-orm-4.3.4.RELEASE.jar:4.3.4.RELEASE]
at org.springframework.dao.support.ChainedPersistenceExceptionTranslator.translateExceptionIfPossible(ChainedPersistenceExceptionTranslator.java:59) ~[spring-tx-4.3.4.RELEASE.jar:4.3.4.RELEASE]
at org.springframework.dao.support.DataAccessUtils.translateIfNecessary(DataAccessUtils.java:213) ~[spring-tx-4.3.4.RELEASE.jar:4.3.4.RELEASE]
at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:147) ~[spring-tx-4.3.4.RELEASE.jar:4.3.4.RELEASE]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) ~[spring-aop-4.3.4.RELEASE.jar:4.3.4.RELEASE]
at org.springframework.data.jpa.repository.support.CrudMethodMetadataPostProcessor$CrudMethodMetadataPopulatingMethodInterceptor.invoke(CrudMethodMetadataPostProcessor.java:133) ~[spring-data-jpa-1.10.5.RELEASE.jar:na]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) ~[spring-aop-4.3.4.RELEASE.jar:4.3.4.RELEASE]
at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92) ~[spring-aop-4.3.4.RELEASE.jar:4.3.4.RELEASE]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) ~[spring-aop-4.3.4.RELEASE.jar:4.3.4.RELEASE]
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:213) ~[spring-aop-4.3.4.RELEASE.jar:4.3.4.RELEASE]
at com.sun.proxy.$Proxy60.save(Unknown Source) ~[na:na]
at hello.Application.lambda$0(Application.java:35) [classes/:na]
at org.springframework.boot.SpringApplication.callRunner(SpringApplication.java:800) [spring-boot-1.4.2.RELEASE.jar:1.4.2.RELEASE]
... 6 common frames omitted

我该如何解决这个问题?您可以在 this git location 查看完整代码

最佳答案

添加关系的另一端,使其成为双向的。在 Address 类中,

@OneToMany(mappedBy = "homeAddress", fetch = FetchType.LAZY)
private Set<Customer> customers

编辑:以上建议没有解决问题。你的问题让我很好奇,我在本地查了一下。当您在每个事务上运行这些操作时,实体管理器会在第一次保存后分离保存的 address1(实体管理器/ session 在每次存储库交互后关闭)。

例如,如果您将所有操作包装在一个保持实体管理器打开的事务中(这通常在服务上完成,具体取决于您的回滚逻辑),您的方法将起作用我使用以下代码进行了测试,它有效。

    package hello;

import javax.transaction.Transactional;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class CustomerService {
@Autowired
private CustomerRepository customerRepository;

@Transactional
public void store(){
Address address1 = new Address("07093", "Brooklyn", "129 67th st", null, "USA");
Address address2 = new Address("03333", "Qeeens", "333 67th st", null, "USA");
// save a couple of customers
Customer jack = new Customer("Jack", "Bauer");

jack.setHomeAddress(address1);

customerRepository.save(jack);
customerRepository.save(new Customer("Chloe", "O'Brian", address1));
}
}

另外,我必须从 pom.xml 中删除 naryana starter

关于java - 具有 ManyToOne 保存操作的 Spring Data JPA 抛出 org.hibernate.PersistentObjectException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41063326/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com