16 Temmuz 2018 Pazartesi

@Type Anotasyonu

Örnek
Joda DateTime için şöyle yaparız
import org.joda.DateTime;
@Type (type=org.jadira.usertype.dateandtime.joda.PersistentDateTime)
private DateTime  dateTime
Örnek
Hibernate 5 ile bu tip otomatik olarak yaratılıyor.
public class PostgreSQLDialect extends PostgreSQL91Dialect {

  public PostgreSQL92Dialect() {
    super();
    this.registerColumnType( Types.JAVA_OBJECT, "json" );
  }
}
Şöyle yaparız.
@Type( type = "json" )
@Column( columnDefinition = "json" )

Hiç yorum yok:

Yorum Gönder