gpt4 book ai didi

java - hibernate-添加到 Set 会导致 InvocableTargetException

转载 作者:行者123 更新时间:2023-12-01 15:47:36 24 4
gpt4 key购买 nike

在使用 hibernate 和 postgres 时,我为实体类创建了旧式 xml 配置,并创建了一些 dao 实现,如(Manning Java Persistence with Hib)书中提到的,并创建了一个 HibernateUtil 类来创建 SessionFactory 。为了测试这些,我创建了一些实体并尝试通过 dao 保存。

在此代码中,Customer 类有一组“订单”。为了配置它,我创建了 hbm.xml 文件,如下所示。

在 demo() 方法中,我创建了实体实例并通过 dao 调用了 saveOrUpdate()。它成功运行并在 db 中创建两个客户和一个订单。但是,当我尝试将订单添加到客户时,它会导致 RuntimeException 并回滚事务。当我尝试调试应用程序时,我发现

org.hibernate.context.ThreadLocalSessionContext.TransactionProtectionWrapper.invoke() ---> lang.reflect.Method.invoke() ---> java.lang.reflect.InitationTargetException

我很困惑为什么会发生这种情况。如果我不调用addOrdersToCustomers(),就不会发生此错误。如果我不调用该方法,那不是意味着 Customer 对象没有订单集吗?在数据库中,Order 表有一个 FK customer_id,由于 createOrders() 方法设置了 Customer,因此它已成功设置为客户的 id但是,这并不会使 Customer 的 Set Orders 字段更新。

知道如何纠正这个问题吗?谢谢,

吉姆

public class Main {
CustomerDao custdao;
OrderDao orderdao;
Customer mark,jon;
Order order1,order2,order3;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd");

public void demo()throws ParseException{
custdao = Daofactory.getCustomerDao();
orderdao = Daofactory.getOrderDao();
createCustomers();
createOrders();
//addOrdersToCustomers();//uncommenting this causes RuntimeException
updateEntities();
}
private void updateEntities() {
Transaction tx = null;
Session session = HibernateUtil.getCurrentSession();
logger.info("got session:"+session);
try{
tx = session.beginTransaction();
logger.info("got transaxion:"+tx);

custdao.saveOrUpdateCustomer(mark);
custdao.saveOrUpdateCustomer(jon);
orderdao.saveOrUpdateOrder(order1);
tx.commit();
}catch(Exception e){
tx.rollback();
}
}

private void addOrdersToCustomers() {
mark.getOrders().add(order1);
}
private void createCustomers() {
mark = new Customer();
mark.setName("mark");
mark.setEmailAddress("mark@home");
mark.setAddress("121,3rd avenue");
mark.setCity("San Diego");
mark.setState("CA");
mark.setCountry("U.S.A");

jon = new Customer();
jon.setName("jon");
jon.setEmailAddress("jon@home");
jon.setAddress("1121 vpura");
jon.setCity("bangalore");
jon.setState("karnataka");
jon.setCountry("india");

}
private void createOrders() throws ParseException {
order1 = new Order();
order1.setCustomer(mark);
order1.setOrderNumber(Long.parseLong("111111111"));
order1.setOrderDate(sdf.parse("2001/01/02"));
...
}
...
public static void main(String[] args) throws ParseException {
new Main().demo();

}
}

映射如下,

public class Customer {
private Long customer_id;
...
private Set<Order> orders;
public Customer() {
super();
orders = new HashSet<Order>();
}
...
}

<hibernate-mapping package="org.me.hibernatestore">
<class name="Customer" table="CUSTOMER">
<id column="CUSTOMER_ID" name="customer_id" type="java.lang.Long">
<generator class="native"/>
</id>
...
<set name="orders" table="ORDERS" lazy="false" cascade="delete-orphan">
<key column="CUSTOMER_ID"/>
<one-to-many class="Order" />
</set>
</class>
</hibernate-mapping>

订单.java

public class Order {
private Long order_id;
...
private Customer customer;
...
}

订单.hbm.xml

...
<class name="Order" table="ORDERS">
<id name="order_id" column="ORDER_ID" type="long">
<generator class="native"/>
</id>
...
<many-to-one name="customer" class="Customer" column="CUSTOMER_ID" lazy="false" />
...

dao 实现有一个基类

public class BaseDaoImpl<T, ID extends Serializable> implements BaseDao<T,ID>{
private Class<T> persistentClass;
private Session session;
public BaseDaoImpl() {
this.persistentClass = (Class<T>)(((ParameterizedType)this.getClass().getGenericSuperclass()).getActualTypeArguments()[0]);
}
public Session getSession() {
if (session == null){
return HibernateUtil.getCurrentSession();
}
return session;
}
...
}

HibernateUtil.java

public class HibernateUtil {    
private static SessionFactory sessionFactory;
static {
try {
sessionFactory = new Configuration().configure().buildSessionFactory();
}catch (Throwable ex) {
throw new ExceptionInInitializerError(ex);
}
}
public static SessionFactory getSessionFactory() {
return sessionFactory;
}
public static Session getCurrentSession(){
Session session = sessionFactory.getCurrentSession(); l
return session;
}

最佳答案

您的堆栈跟踪清楚地表明了原因 - 您正在尝试使用对 transient 对象的引用来保存对象。您要么需要在添加的 Order 对象上调用 save(),然后再在 Customer 上调用它,或者您需要添加一个(至少)将级联保留在 Customer 类中设置的 orders 上。在您的 xml 情况下,这将是正确的

<set name="orders" table="ORDERS" lazy="false" cascade="delete-orphan">

<set name="orders" table="ORDERS" lazy="false" cascade="delete-orphan,persist">

关于java - hibernate-添加到 Set 会导致 InvocableTargetException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6841149/

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