vote up 0 vote down star

What is the FieldBridge for timestamp in HIbernate Search?

@Field

public java.sql.Timestamp approvedDate;

flag
Didn't understand question. What action you try to perform and what's going wrong? – Vanger Jun 3 at 15:36

2 Answers

vote up 1 vote down check

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.

link|flag
vote up 0 vote down

I was having the same problem for a long time. first I convert Timestamp to Date for some class. but when I have problem from deeper level I could not change the whole code. anyway long story short here is what I use

@Field(index=Index.UN_TOKENIZED)
@DateBridge(resolution=Resolution.MILLISECOND)
public Timestamp getCreated(){
  return super.getCreated();
}

and the good thing it is working fine :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.