gpt4 book ai didi

java - 非空属性引用持久值的空值或 transient 值

转载 作者:搜寻专家 更新时间:2023-10-30 21:26:42 24 4
gpt4 key购买 nike

我正在尝试使用 JPA1 和 Hibernate 实现来持久化两个不同的实体。代码如下所示:

父实体类

@Entity
@Table(name = "parent")
public class Parent implements Serializable {

{...}
private Child child;

@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "child_id", nullable = "false")
public Child getChild() {
return child;
}

public void setChild(Child child) {
this.child = child;
}

子实体类

@Entity
@Table(name = "child")
public class Child implements Serializable {

private Integer id;

@Id
@Column(name = "child_id")
public Integer getId() {
return id;
}

public void setId(Integer id) {
this.id = id;
}
}

测试用例

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:META-INF/application.xml")
@Transactional
public class ParentTest extends TestCase {

@PersistenceContext
private EntityManager entityManager;

@Test
public void testSave() {
Child child = new Child();
child.setId(1);

Parent parent = new Parent();
parent.setChild(child);

entityManager.persist(parent.getChild());
entityManager.persist(parent); // throws the exception
}
}

application.xml 上的实体管理器和事务

<tx:annotation-driven transaction-manager="transactionManager" /> 

<jee:jndi-lookup id="dataSource" jndi-name="java:/jdbc/myds" expected-type="javax.sql.DataSource" />

<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="packagesToScan" value="com.mypackage" />
<property name="dataSource" ref="dataSource" />
<property name="jpaVendorAdapter"›
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"/>
</property>
<property name="jpaProperties">
<props>
<prop key="hibernate.dialect>org.hibernate.dialect.Oracle10gDialect</prop>
</props>
</property>
</bean>

<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>

当尝试插入父对象时,hibernate 会抛出一个 PropertyValueException,说明子对象为空或 transient ,即使子对象是在此操作之前创建并保留的。奇怪的是,这仅在单元测试中失败,而在实际应用程序中,使用预先插入的 child ,这按预期工作。

附言:我很清楚我可以用 cascade persist 映射子对象,但这不是这里的想法。我只想检查这两个是否独立工作。

最佳答案

这里的问题是您要使用设置的值来持久化父表。当它持久化时,它需要子表 ID,它必须已经被持久化,因为它是一个外键,因此它是一个引用空值的非空属性。

    @Test
public void testSave() {
Child child = new Child();
child.setId(1);
entityManager.persist(child);

Parent parent = new Parent();
parent.setChild(child);

entityManager.persist(parent);
}

尝试先保存子项,然后再保存父项。否则更改映射

关于java - 非空属性引用持久值的空值或 transient 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27112784/

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