JPA、Hibernate注解@DynamicInsert和@DynamicUpdate

@DynamicInsert

使用该注解默认值(true)可以让Hibernate在插入时生成动态语句时忽略空值对应的列。

/**
 * For inserting, should this entity use dynamic sql generation where only non-null columns get referenced in the 
 * prepared sql statement?
 *
 * @author Steve Ebersole
 */
@Target( TYPE )
@Retention( RUNTIME )
public @interface DynamicInsert {
    /**
     * Should dynamic insertion be used for this entity?  {@code true} says dynamic insertion will be used.
     * Default is {@code true} (since generally this annotation is not used unless the user wants dynamic insertion).
     */
    boolean value() default true;
}

@DynamicUpdate

使用该注解默认值(true)可以让Hibernate在更新时生成动态语句时忽略空值对应的列。

/**
 * For updating, should this entity use dynamic sql generation where only changed columns get referenced in the
 * prepared sql statement?
 * <p/>
 * Note, for re-attachment of detached entities this is not possible without select-before-update being enabled.
 *
 * @author Steve Ebersole
 *
 * @see SelectBeforeUpdate
 */
@Target( TYPE )
@Retention( RUNTIME )
public @interface DynamicUpdate {
    /**
     * Should dynamic update generation be used for this entity?  {@code true} says the update sql will be dynamic
     * generated.  Default is {@code true} (since generally this annotation is not used unless the user wants dynamic
     * generation).
     */
    boolean value() default true;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值