public void update(Models persistentInstance) {
  log.debug("deleting Tt instance");
  try {
  getSession().update(persistentInstance);
  
  Transaction tx = getSession().beginTransaction();
  tx.commit();
  
  System.out.println(" tx.commit update successful In model");
  log.debug("delete successful");
  } catch (RuntimeException re) {
  log.error("delete failed", re);
  throw re;
  }
  }
  


Abbas Adel <[EMAIL PROTECTED]> wrote:  Can you provide us with 
modeldao.update(); code 

-----Original Message-----
From: Guoxue Zhang [mailto:[EMAIL PROTECTED] 
Sent: Sunday, February 25, 2007 8:20 PM
To: Jakarta Commons Users List
Subject: Update problems with hibernate & struts

Hello Guys,

When I update a record using Hibernate and Struts, I have to transfer
primary key(type is LONG) to ModelUpdadteAction class from update.jsp file.


In ModelUpdateAction.java file: 

String v_id = request.getParameter("modelid");
Long v_idLong = Long.valueOf( v_id);

Models model = new Models();
model.setModelId(v_idLong);
model.setModelname("Update New record IN Models");

ModelsDAO modeldao = new ModelsDAO();
modeldao.update(model);

I cann't update the record. A error is: javax.servlet.ServletException: a
different object with the same identifier value was already associated with
the session:

If I directly update with a primary key: 

Long v_idLong = Long.valueOf( "55");

Models model = new Models();
model.setModelId(v_idLong);
model.setModelname("Update New record IN Models");

ModelsDAO modeldao = new ModelsDAO();
modeldao.update(model);

It is successful.

Please reply that is what is problem and how to solv it. Thank you.

Frank










---------------------------------
Be a PS3 game guru.
Get your game face on with the latest PS3 news and previews at Yahoo! Games.


__________ NOD32 2080 (20070225) Information __________

This message was checked by NOD32 antivirus system.
http://www.eset.com


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



 
---------------------------------
The fish are biting.
 Get more visitors on your site using Yahoo! Search Marketing.

Reply via email to