Hibernate拦截器

本文介绍如何在使用Hibernate进行数据库操作时,通过拦截器自动填充创建时间和更新时间字段,简化数据持久化过程。具体实现包括继承EmptyInterceptor类并重载onFlushDirty和onSave方法,然后在Spring配置文件中启用该拦截器。

项目中每个表里都有相同的四个字段,创建时间,创建人,更新时间,更新人,这时我们可以通过拦截器在保存,更新之前设置他们的值

实现方法: 
首先写一个类继承org.hibernate.EmptyInterceptor或者实现org.hibernate.Interceptor接口: 
为了简单起见,一般直接继承org.hibernate.EmptyInterceptor就可以了。 
然后重载一下onFlushDirty方法和onSave方法就可以了。 

因为Hibernate会在更新数据时回调onFlushDirty方法插入数据时回调onSave方法。 

public class HibernateInterceptor extends EmptyInterceptor { //只要继承这个类就OK了

@Override
public boolean onSave(Object entity, Serializable id, Object[] state,
    String[] propertyNames, Type[] types) {//这个保存到数据库之前,会执行的代码,entity是要保存的实体类
   try {
    PropertyUtils.setProperty(entity, "createTime", new Date());
    if (ServletActionContext.getRequest() != null) {
     PropertyUtils.setProperty(entity, "createUserID",
       ServletActionContext.getRequest().getSession()
         .getAttribute(Constants.LOGIN_USER_ID));
    }
   } catch (IllegalAccessException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   } catch (InvocationTargetException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   } catch (NoSuchMethodException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }
   return super.onSave(entity, id, state, propertyNames, types);
}

@Override
public boolean onFlushDirty(Object entity, Serializable id,
    Object[] currentState, Object[] previousState,//这个更新到数据库之前,会执行的代码,entity是要更新的实体
    String[] propertyNames, Type[] types) {
   try {
    PropertyUtils.setProperty(entity, "updateTime", new Date());
    if (ServletActionContext.getRequest() != null) {
     PropertyUtils.setProperty(entity, "updateUserID",
       ServletActionContext.getRequest().getSession()
         .getAttribute(Constants.LOGIN_USER_ID));
    }
   } catch (IllegalAccessException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   } catch (InvocationTargetException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   } catch (NoSuchMethodException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }
   return super.onFlushDirty(entity, id, currentState, previousState,
     propertyNames, types);
}

 

怎么让它起作用呢,在spring里配置文件加上下面的

<bean id="hibernateInterceptor"
   class="com.jsict.framework.interceptor.HibernateInterceptor" /> 
  
<bean id="sessionFactory"
   class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
   <property name="dataSource">
    <ref bean="dataSource" />
   </property>
   <property name="entityInterceptor"> //在sessionFactory里配置上这个就可以了,拦截器就起作用了
    <ref local="hibernateInterceptor" />
   </property>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值