如何允许设置日期格式的小时和分钟?

时间:2017-05-06 09:13:36

标签: jhipster

如何增加设定时间和分钟的可能性?目前,我有这样的事情: enter image description here

但在这种情况下,不可能设定小时和分钟。如何通过Web浏览器设置此数据?

1 个答案:

答案 0 :(得分:1)

在您的实体中,我怀疑startDate字段是LocalDate。请改为ZonedDateTime

LocalDate: A java.time.LocalDate object, used to correctly manage dates in Java.
ZonedDateTime: A java.time.ZonedDateTime object, used to correctly manage dates and times in Java.

请参阅creating an entity