欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  资讯频道

grails插件grails-fixtures 0.7发布

程序员文章站 2022-03-24 14:28:36
...
grails-fixtures 0.7版发布了

fixtures插件通过使用Spring Bean Builder DSL提供了一种方便的机制来加载领域对象图...
fixtureLoader.load {
       guillaume(Author, name: "Guillaume Laforge")
       dierk(Author, name: "Dierk Koenig")
       gina(Book, title: "Groovy In Action", authors: [guillaume, dierk])
}


本次发布的特性:
  • 大大提高了对复杂关系图的支持。
  • 完全支持双向关系。
  • 提高加载多重fixtures的处理。


更多信息可参考:http://grails.org/plugin/fixtures
相关标签: Grails Bean