Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试保存日期,但时间明确。到目前为止它不起作用。即使我已经在引导程序中声明 clearTime 来保存数据,它也总是有时间。我在想我必须在域类中使用 clearTime,因为我使用的是 mysql db。请告诉我。谢谢你。
假设您有一个带有 Date 字段的 Domain 对象,您应该能够为它创建一个设置器,在设置它时清除日期的时间部分:
class MyDomain { Date date void setDate( Date d ) { d.clearTime() this.date = d } }