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 を宣言していても、常に時間があります。私はmysql dbを使用していたので、ドメインクラスでclearTimeを使用する必要があると考えていました。私にお知らせください。ありがとうございました。
Assuming you have a Domain object with a Date field, you should be able to create a setter for it that clears the time portion of the date when it is set:
class MyDomain { Date date void setDate( Date d ) { d.clearTime() this.date = d } }