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.
grails プロジェクトのドメイン クラスに、validFrom と validTo の日付フィールドがあります。その検証に基づいてサービスを作成したい。現在のシステム日付よりも大きいか小さいかを確認する方法を教えてください。
これは
Date now = new Date() if (validFrom.before(now) && validTo.after(now)) { //valid for this moment }