Annotation Type 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?
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      boolean value
      Should dynamic insertion be used for this entity? true says dynamic insertion will be used.
    • Element Detail

      • 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).
        Default:
        true