i am using spring with hibernate.
iam updating the status and iam using the query as
hibernateTemplate.load(CLASS.class,new Integer(value),LockMode.UPGRADE);
ft.setStatus("true");
hibernateTemplate.save(ft);
after loading the query, my server is hanging ..its not excuting the
ft.setStatus("true");
hibernateTemplate.save(ft);
..plz help me on this.


Reply With Quote