如何在 grails 的域类中填充列表?
大家好 我的 bootstrap.groovy 中有一个映射,如何使用该映射来填充我的域类中的另一个映射? 这是代码
bootstrap.groovy
def data = [ x:'45.5',
y:'7',
z:[ z0:'2.5', z1:'3.5', z2:'4.0', z3:'3.5', z4:'5.0']
]
what code should I write here?
//some code
domain class
class target implements Serializable{
//Just for the time being
List list = new ArrayList()
}
任何想法将不胜感激
Hi folks
I have a map in my bootstrap.groovy, how can use this map to populate another map in my domain class?
here is the code
bootstrap.groovy
def data = [ x:'45.5',
y:'7',
z:[ z0:'2.5', z1:'3.5', z2:'4.0', z3:'3.5', z4:'5.0']
]
what code should I write here?
//some code
domain class
class target implements Serializable{
//Just for the time being
List list = new ArrayList()
}
any ideas would be appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
第一件事是您的问题询问如何用另一个地图填充一个地图,但您在域中定义了一个列表。因此,如果我理解正确,您的域更有可能是:
First thing is your question asks how to populate one map with another map, but you define a list in your domain. So if I'm understanding you correctly, your domain would more likely be:
我相信最好使用 Grails 配置并更新 Config.groovy。
I believe it's better to use Grails configuration and update Config.groovy.