注释类型 DynamicInsert


  • @Target(TYPE)
    @Retention(RUNTIME)
    public @interface DynamicInsert
    For inserting, should this entity use dynamic sql generation where only non-null columns get referenced in the prepared sql statement?
    作者:
    Steve Ebersole
    • 可选元素概要

      可选元素 
      修饰符和类型 可选元素 说明
      boolean value
      Should dynamic insertion be used for this entity?
    • 元素详细资料

      • value

        boolean value
        Should dynamic insertion be used for this entity? true says dynamic insertion will be used. Default is true (since generally this annotation is not used unless the user wants dynamic insertion).
        默认值:
        true