0

我知道关于这个主题有几个问题,但似乎没有一个对我有用。我有一个带有以下域对象的 Grails 应用程序:

class Tag {
    String name
}

class SystemTag extends Tag {
    // Will have additional properties here...just placeholder for now
}

class Location {
    String name
    Set<Tag> tags = []
    static hasMany = [tags: Tag]
}

我正在尝试查询已被 1 个或多个标签标记的所有 Location 对象:

class LocationQueryTests {

    @Test
    public void testTagsQuery() {
        def tag = new SystemTag(name: "My Locations").save(failOnError: true)
        def locationNames = ["L1","L2","L3","L4","L5"]
        def locations = []
        locationNames.each {
            locations << new Location(name: it).save(failOnError: true)
        }
        (2..4).each {
            locations[it].tags << tag
            locations[it].save(failOnError: true)
        }

        def results = Location.withCriteria {
            tags {
                'in'('name', [tag.name])
            }
        }

        assertEquals(3, results.size())     // Returning 0 results
    }
}

我已验证数据正在正确创建/设置...创建了 5 个位置对象,其中最后 3 个已被标记。

我看不出上面的查询有什么问题。我真的很想远离 HQL,我相信这应该是可能的。

4

2 回答 2

1

欢迎冬眠。

save 方法通知持久性上下文应该保存或更新一个实例。除非使用 flush 参数,否则对象不会立即持久化

如果您不使用刷新,它会分批保存,因此当您在保存后立即设置查询时,似乎数据不存在。

你需要添加

 locations[it].save(failOnError: true, flush:true)
于 2012-05-01T18:17:19.543 回答
1

您应该使用addTo*for 为一对多或多对多关系添加域类关系。

(2..4).each {
    locations[it].addToTags(tag)
}
于 2012-05-01T18:26:05.070 回答