mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
43 lines
994 B
Java
43 lines
994 B
Java
package com.avaje.ebean.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* Specify a property holding JSON content.
|
|
* <p>
|
|
* The content will be stored on Postgres using it's JSONB type and as Clob for other databases.
|
|
* </p>
|
|
* <p>
|
|
* This is equivalent to using <code>@DbJson(storage = DbJsonType.JSONB)</code>
|
|
* </p>
|
|
*
|
|
* <h3>Example:</h3>
|
|
* <pre>{@code
|
|
*
|
|
* // Store as JSONB on Postgres or Clob on other databases
|
|
* @DbJsonB
|
|
* Map<String,Object> content;
|
|
*
|
|
* }</pre>
|
|
*
|
|
* <h3>Equivalent to:</h3>
|
|
* <pre>{@code
|
|
*
|
|
* // Store as JSONB on Postgres or Clob on other databases
|
|
* @DbJson(storage = DbJsonType.JSONB)
|
|
* Map<String,Object> content;
|
|
*
|
|
* }</pre>
|
|
*/
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(ElementType.FIELD)
|
|
public @interface DbJsonB {
|
|
|
|
/**
|
|
* For VARCHAR storage specify the column length.
|
|
*/
|
|
int length() default 0;
|
|
} |