Örnek
Joda DateTime için şöyle yaparız
Hibernate 5 ile bu tip otomatik olarak yaratılıyor.
Joda DateTime için şöyle yaparız
import org.joda.DateTime;
@Type (type=org.jadira.usertype.dateandtime.joda.PersistentDateTime)
private DateTime dateTime
ÖrnekHibernate 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