2 Nisan 2018 Pazartesi

Hibernate Search @Field Anotasyonu

Örnek
Şöyle yaparız.
@SuppressWarnings("serial")
@Entity
@Indexed
@Table(name = "MAIN",schema="maindb")
public class MAIN implements Serializable {

  @Id
  @DocumentId
  private String poNo; // my primary key

  @Field(index=Index.YES, analyze=Analyze.YES, store=Store.NO)
  private String postatus;alo
  ...
}

Hiç yorum yok:

Yorum Gönder