Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个具有复杂逻辑的控制器动作来构建模型,我想在 BootStrap.groovy 期间构建一个。如何在引导期间使用所需的参数调用该控制器操作?
Grails 的方式是将“复杂逻辑”移动到控制器调用的服务中,然后从引导程序调用相同的服务方法。BootStrap您可以像在服务和控制器中一样使用自动装配,
BootStrap
def myService
在 init 闭包之外。