HIbernate Search中的时间戳FieldBridge是什么?
@Field
public java.sql.Timestamp approvedDate;
答案 0 :(得分:2)
查看BridgeFactory source code时,似乎没有默认的FieldBridge用于时间戳。
我认为您应该提供自己的自定义FieldBridge。
答案 1 :(得分:0)
长话短说,这就是我的用法:
@Field(index=Index.UN_TOKENIZED)
@DateBridge(resolution=Resolution.MILLISECOND)
public Timestamp getCreated(){
return super.getCreated();
}
并且它运作良好的好处:)