HIbernate Search 中时间戳的 FieldBridge 是什么?
@场地
公共 java.sql.Timestamp 批准日期;
HIbernate Search 中时间戳的 FieldBridge 是什么?
@场地
公共 java.sql.Timestamp 批准日期;
When looking at the BridgeFactory source code, it seems there is no default FieldBridge for timestamps.
I think you should provide your own custom FieldBridge.
长话短说,这是我使用的:
@Field(index=Index.UN_TOKENIZED)
@DateBridge(resolution=Resolution.MILLISECOND)
public Timestamp getCreated(){
return super.getCreated();
}
好在它运行良好:)