Grails:在Bootstrap代码的存根关闭中访问spring bean?

前端之家收集整理的这篇文章主要介绍了Grails:在Bootstrap代码的存根关闭中访问spring bean?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在我的grails项目的Bootstrap.groovy中访问我的destroy闭包中的bean.关于如何实现这一点的任何想法?

我似乎无法访问servletContext …?

解决方法

您可以使用该代码块从任何地方(包括BootStrap的destroy闭包)获取对applicationContext的引用:
def ctx = org.codehaus.groovy.grails.web.context.ServletContextHolder.servletContext.getAttribute(org.codehaus.groovy.grails.web.servlet.GrailsApplicationAttributes.APPLICATION_CONTEXT);

获取bean的引用就像ctx.beanName一样简单.

这是一个小的util类(用Java编写),可以简化这个任务:

import org.springframework.context.ApplicationContext;
import org.codehaus.groovy.grails.web.context.ServletContextHolder;
import org.codehaus.groovy.grails.web.servlet.GrailsApplicationAttributes;

public class SpringUtil {

    public static ApplicationContext getCtx() {
        return getApplicationContext();
    }

    public static ApplicationContext getApplicationContext() {
        return (ApplicationContext) ServletContextHolder.getServletContext().getAttribute(GrailsApplicationAttributes.APPLICATION_CONTEXT);
    }

    @SuppressWarnings("unchecked")
    public static <T> T getBean(String beanName) {
        return (T) getApplicationContext().getBean(beanName);
    }

}

一个例子:

def bean = SpringUtil.getBean("beanName")

干杯,西吉

原文链接:https://www.f2er.com/bootstrap/234138.html

猜你在找的Bootstrap相关文章