Annotation Type JdbiProperty


@Target({METHOD,FIELD}) @Retention(RUNTIME) public @interface JdbiProperty
Configure reflective bean and pojo property attributes. Most reflective mappers, including field, method, and property mappers, try to respect this.
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    boolean
    Returns true if the property is bound as an argument.
    boolean
    Returns true if the property is mapped in a result.
  • Element Details

    • map

      boolean map
      Returns true if the property is mapped in a result. The property will be read from the database into a result.
      Returns:
      true if the property is unmappable
      Default:
      true
    • bind

      boolean bind
      Returns true if the property is bound as an argument. Property will be bound as an argument.
      Returns:
      true if the property is unbindable
      Default:
      true