0

这听起来很简单的问题,但我很难找到如何获取今天更新的所有条目。

def today = new Date()
def q = "from UserMapping as u where u.updateTime like :today"
def updated = UserMapping.findAll(q, [today: today])

java.lang.String cannot be cast to java.util.Date. Stacktrace follows:

我已经尝试了大约 10 种其他方法,但我无法弄清楚。

4

1 回答 1

2

我使用以下方法解决了它:

def today = new Date().clearTime()
def updated = UserMapping.findAllByUpdateTimeGreaterThanEquals(today)

如果有人有更优雅的方法,请发布。

于 2013-01-15T06:04:51.087 回答