使用环境重新加载Grails引导

使用环境重新加载Grails引导,grails,Grails,在中重新加载Grails引导有一个很好的答案 但是我在init闭包中定义了环境,因此我得到了错误: groovy.lang.MissingMethodException: No signature of method: BootStrap.environments() is applicable for argument types: (BootStrap$_closure1_closure3) values: [BootStrap$_closure1_closure3@19ad0326] 引

在中重新加载Grails引导有一个很好的答案

但是我在init闭包中定义了环境,因此我得到了错误:

groovy.lang.MissingMethodException: No signature of method: BootStrap.environments() is applicable for argument types: (BootStrap$_closure1_closure3) values: [BootStrap$_closure1_closure3@19ad0326]
引导代码基本上是角色、用户、用户角色的spring安全域类

import org.mine.*

class BootStrap
{
    def init =
    { servletContext ->
        environments
          {
            development
            {
            def adminRole = new DummyRole(authority: 'ROLE_ADMIN').save(flush: true)
            def userRole = new DummyRole(authority: 'ROLE_USER').save(flush: true)

            def user = new DummyUser(username: 'user1', email_address: 'user1@mine.org', enabled: true, password: 'password')
            def user1 = new DummyUser(username: 'user2', email_address: 'user2@mine.org', enabled: true, password: 'password')
            def user2 = new DummyUser(username: 'user3', email_address: 'user3@mine.org', enabled: true, password: 'password')

            user.save(flush: true)
            user1.save(flush: true)
            user2.save(flush: true)

            DummyUserDummyRole.create manager, adminRole, true
            DummyUserDummyRole.create user, userRole, true
            DummyUserDummyRole.create user1, userRole, true
            DummyUserDummyRole.create user2, userRole, true

            assert DummyUser.count() >= 9
            assert DummyRole.count() >= 10
            assert DummyUserDummyRole.count() >= 9


        }   // end-development
        test {

            // bootstrap data for test environment

        }
        production {

            // bootstrap data for production environment

        }
    }
}

    def destroy =
    {
            // code here
    }
}
这对我很有用:

def servletCtx = org.codehaus.groovy.grails.web.context.ServletContextHolder.servletContext
def myBootstrapArtefact = grailsApplication.getArtefacts('Bootstrap')[-1]
BootStrap.metaClass.environments = grails.util.Environment.&executeForCurrentEnvironment
myBootstrapArtefact.referenceInstance.init(servletCtx)
从您引用的答案中精心复制(然后修改):-)

这对我很有用:

def servletCtx = org.codehaus.groovy.grails.web.context.ServletContextHolder.servletContext
def myBootstrapArtefact = grailsApplication.getArtefacts('Bootstrap')[-1]
BootStrap.metaClass.environments = grails.util.Environment.&executeForCurrentEnvironment
myBootstrapArtefact.referenceInstance.init(servletCtx)

从您引用的答案中精心复制(然后修改):-)

我一直使用这个解决方案,它对我有效。也适用于Grails3.x

我一直使用这个解决方案,它对我很有效。也适用于Grails3.x

只需将语法转换为:

Environment.executeForCurrentEnvironment {
    production {
        // do something in production
    }
    development {
        // do something only in development
    }
}

只需将您的语法切换为:

Environment.executeForCurrentEnvironment {
    production {
        // do something in production
    }
    development {
        // do something only in development
    }
}

你能发布你的引导代码吗?你能发布你的引导代码吗?