当前位置: 代码迷 >> J2EE >> Hibernate 中 update 不执行,不报错解决办法
  详细解决方案

Hibernate 中 update 不执行,不报错解决办法

热度:716   发布时间:2016-04-17 22:58:55.0
Hibernate 中 update 不执行,不报错
最近调试的时候,发现 之前写好的 项目出了问题。

就是在执行  update、delete 的时候, 不执行,但是也不报错。 

配置输出 SQL语句的时候,看不到 SQL语句。数据库中也没有任何变化。

爬文了两天没有结果, 但是发现 如果使用 原生 SQL语句,就可以 更新、删除。如

Query query=this.getSession().createQuery("update from "+c.getName()+" set keyword='123456' where id = '9'");
query.executeUpdate();



再贴上 BaseDao 的实现类

package com.soryin.dao.impl;

import java.io.Serializable;
import java.lang.reflect.ParameterizedType;
import java.util.List;

import javax.annotation.Resource;

import org.hibernate.Criteria;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;

import com.soryin.dao.BaseDao;

/**
 * 数据库基本操作实现
 * @author Hello_海生
 * @date 2014年3月12日
 * @param <T>
 */
@SuppressWarnings("unchecked")
public class BaseDaoImpl<T> implements BaseDao<T> {
//声明Session工厂
@Resource
private SessionFactory sessionFactory;
protected Session getSession() { //获取session
return this.sessionFactory.openSession();
}

protected Class<T> c; //对象类
public BaseDaoImpl() {
ParameterizedType type = (ParameterizedType) this.getClass().getGenericSuperclass();
c = (Class<T>) type.getActualTypeArguments()[0];
System.out.println("初始化"+this.c.getName()+"DAO");
}



@Override //持久化对象
public Serializable save(T entity) {
Serializable uid=0;
Transaction tx=this.getSession().beginTransaction();
try{
uid=this.getSession().save(entity);
tx.commit();
System.out.println(this.c.getName()+"DAO"+"执行save 成功!");
}catch(Exception e){
System.out.println(this.c.getName()+"DAO"+"执行save 失败!!!!!!!!!!!!!");
tx.rollback();
}
return uid;
}

@Override //删除对象
public boolean delete(Serializable id) {
boolean rs= false;
Transaction tx=this.getSession().beginTransaction();
try{
Query query=this.getSession().createQuery("delete from "+c.getName()+" where id = '"+id+"'");
query.executeUpdate();
tx.commit();
rs=true;
System.out.println(this.c.getName()+"DAO"+"执行 delete("+id+") 成功!");
}catch(Exception e){
System.out.println(this.c.getName()+"DAO"+"执行 delete("+id+") 失败!!!!!!!!!!!!!");
tx.rollback();
}
return rs;
}

@Override //根据ID 查询对象
public T findById(Serializable id) {
Object t = this.getSession().get(this.c, id);
System.out.println(this.c.getName()+"DAO"+"执行 findById("+id+") 成功!");
return (T) t;
}

@Override //根据某项参数查询 列表
public List<T> findEntityListByParams(String s,Object params) {
Query query=this.getSession().createQuery("from "+c.getName()+" where "+s+" = '"+params+"'");
System.out.println(this.c.getName()+"DAO"+"执行 "+s+"= "+params+" 查询 ");
return (List<T>)query.list();
}

@Override //查询所有对象
public List<T> findAll() {
Query query=this.getSession().createQuery("from "+c.getName());
System.out.println(this.c.getName()+"DAO"+"执行  findAll");
return (List<T>)query.list();
}

@Override //查询分页
public List<T> findByPage(int start,int count){  
        Criteria criteria = this.getSession().createCriteria(c);  
        criteria.setFirstResult(start);  
        criteria.setMaxResults(count);  
        return criteria.list();  
    }  

@Override //更新数据
public boolean update(T entity) {
boolean rs= false;
this.getSession().update(entity);
Transaction tx=this.getSession().beginTransaction();
try{
this.getSession().update(entity);
tx.commit();
rs=true;
System.out.println(this.c.getName()+"DAO"+"执行update 成功!");
}catch(Exception e){
System.out.println(this.c.getName()+"DAO"+"执行update 失败!!!!!!!!!!");
tx.rollback();
}
return rs;
}

}



求大神指点,卡在这两天了。。。。
------解决思路----------------------
引用:
Quote: 引用:

update  表名  set 字段 where 条件

这个我知道 

我那是测试代码。 测试发现那 两句代码 放在
update 方法中 
代替 “ this.getSession().update(entity);”
可以执行

。。。。。。。。。我的目标是 要 
执行 “ this.getSession().update(entity);” 的时候,Hibernate 自动生成SQL语句来 修改数据。

在this.getSession().update(entity);这句前面少了tx.begin();
------解决思路----------------------
我也遇到了同样的情况:不执行,不报错。估计只是大家出现这种情况的其中之一。
是因为为ssh整合时,在spring中声明事务,没有配置update方法,添加上就好了。我猜是hibernate更新时没有事务不执行,只是猜测。
<tx:advice id="txAdvice" transaction-manager="txManager">
<tx:attributes>
<tx:method name="get*" read-only="true" />
<tx:method name="save*" />
<tx:method name="add*" />
<tx:method name="delete*" />
<tx:method name="update*" />
</tx:attributes>
</tx:advice>
------解决思路----------------------
1、DAO中的 使用getCurrentSession()获取session对象,不要使用openSession(),spring事务管理的要求
2、Spring MVC+Hibernate注解事务问题
   将事务注解
<tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true"/>
放入到spring mvc servlet配置文件中,这时候服务启动时,事务也可以同时被加载进去。
参考文献:http://fengzhiyin.iteye.com/blog/714686
  相关解决方案