Hi I am new to Lucene hibernate search.
I want to use search with out the Annotations.I want to through only .hbm files. Please suggest me how i can do that.Please send some examples on this.
Tha actuval code by lucene was
@Entity
@Indexed
public class Clock {
private Integer id;
private String brand;
@Field(index= Index.TOKENIZED, store= Store.YES)
public String getBrand() {
return brand;
}
My HBM file foe indexing was
<property name="productName" type="java.lang.String" >
<column name="Product_Name" length="100" index="Index.TOKENIZED, store= Store.YES" not-null="true" />
</property>
Please suggest me on this..
Thanks in advance
Regards
Raghu
|