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>

### 整合 Hibernate 拦截器到 Spring Boot 的方法 在 Spring Boot 中整合 Hibernate 拦截器可以用于实现自定义逻辑或审计功能。以下是具体的方法: #### 配置 `LocalSessionFactoryBean` 或 `EntityManagerFactory` 由于 Spring Boot 自动配置了 Hibernate,因此可以通过设置 `hibernate.session_factory.interceptor` 属性来指定拦截器类。 ```properties spring.jpa.properties.hibernate.session_factory.interceptor=com.example.CustomInterceptor ``` 此属性会告诉 Hibernate 使用哪个拦截器实例[^1]。 #### 创建自定义拦截器类 创建一个继承自 `org.hibernate.EmptyInterceptor` 的类,并重写所需的方法。例如: ```java import org.hibernate.EmptyInterceptor; import java.io.Serializable; public class CustomInterceptor extends EmptyInterceptor { @Override public boolean onSave(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types) { // 实现保存前的逻辑 System.out.println("Entity is being saved: " + entity); return super.onSave(entity, id, state, propertyNames, types); } @Override public void onDelete(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types) { // 实现在删除之前的逻辑 System.out.println("Entity is being deleted: " + entity); super.onDelete(entity, id, state, propertyNames, types); } } ``` 上述代码展示了如何通过覆盖 `onSave` 和 `onDelete` 方法,在实体保存和删除之前执行特定操作。 #### 注册拦截器到 Spring 应用上下文中 如果需要动态注册拦截器,则可以在应用启动时将其注入到 Bean 定义中。例如: ```java import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class AppConfig { @Bean public LocalContainerEntityManagerFactoryBean entityManagerFactory(EntityManagerFactoryBuilder builder, DataSource dataSource) { Map<String, Object> properties = new HashMap<>(); properties.put("hibernate.session_factory.interceptor", customInterceptor()); return builder.dataSource(dataSource).packages("com.example").persistenceUnit("unitName") .properties(properties).build(); } @Bean public CustomInterceptor customInterceptor() { return new CustomInterceptor(); } } ``` 这段代码显示了如何将拦截器作为 Bean 进行管理并传递给 `entityManagerFactory` 的配置过程[^2]。 #### 测试集成效果 完成以上步骤后,运行应用程序并通过调试验证拦截器是否按预期工作。每次触发数据库交互时,相应的拦截器方法会被调用。 --- ###
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值