JSF Converter Timestamp
问题 I want to convert my input into a timestamp value. I have only found a dateconverter in examples. Are there any best practises? Thank you Update: I want to save a birthday of a user but my backend requires a timestamp value. And I have problems with binding it to my jsf frontend.. Maybe a link to an example would be helful :-) I tried it as follows: public void setBday(Date bday) { member.setBirthday(new Timestamp(bday.getTime())); } public Timestamp getBday() { return member.getBirthday(); }