- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下域结构:
class Survey {
Integer id
String title
static hasMany = [questions: Question]
static constraints = {
id()
title()
questions()
}
String toString(){
return title
}
}
class Question {
Integer id
String text
static hasMany = [responses: Response]
static fetchMode = [responses: 'eager']
static constraints = {
id()
text()
responses()
}
String toString(){
return text
}
}
class Response {
Integer id
String text
Integer numberOfPeopleSelected = 0
static constraints = {
id()
text()
numberOfPeopleSelected()
}
String toString(){
return text
}
}
我修改了 Bootstrap.groovy
以在启动时初始化一些数据,并单独调用 Survey.list()
、Question.list()
和 Response.list()
显示每个单独的级别都是使用预期值创建的
但是,当我执行 Survey.list()
并深入研究问题时,响应始终为空,如下所示:
我期望通过设置fetchMode来实现这一点渴望它应该始终加载该特定对象。
我可以对域对象进行哪些更改,以确保当我执行 Survey.findById(1)
之类的操作时它会加载所有问题和回复?
谢谢
最佳答案
请在您的 Survey 类中定义此内容
static fetchMode = [questions: 'eager']
如果这不起作用,因为 fetchMode 'eager' 已被弃用
你也可以尝试
static mapping = {
questions fetch :'join'
}
按照此了解有关获取策略的更多信息 https://grails.github.io/grails-doc/3.0.x/ref/Database%20Mapping/fetch.html
关于Grails GORM,多层领域类的急切获取模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15532749/
我有一个案例,在大多数情况下,对象之间的关系是这样的,因此在关系上预先配置一个渴望(加入)的负载是有意义的。但是现在我遇到了一种情况,我真的不想完成急切的加载。 我是否应该从关系中删除连接负载并将所有
在我的 Grails 项目中,我有以下类: class A { static hasMany = [cs:C] } class B { static hasMany = [cs:C]
想象一下以下简化的 DI 模型: @ApplicationScoped public class A { private B b; @Inject public A(B b)
我使用 MapLoader 将数据从数据存储初始加载到 Hazelcast (InitialLoadMode = EAGER)。我需要从一个物化 View 中加载这些数据,该 View 是为了在加载过
我使用 Hibernate Envers 4.3.10.Final。我有以下两个 JPA 类: public class Factory { private int factoryID;
EJB 似乎被延迟加载 - 每当访问时。 但是,我想急切地初始化它们 - 即每当容器启动时。这是如何实现的(尤其是在 JBoss 中) This topic给出了一些提示,但不是很令人满意。 最佳答案
我是一名优秀的程序员,十分优秀!