gpt4 book ai didi

spring - 导入就地插件的Grails应用程序上下文

转载 作者:行者123 更新时间:2023-12-02 14:27:29 25 4
gpt4 key购买 nike

我有一个项目设置,其中包含一个常规的Grails应用程序和一个就地Grails插件。我的Grails应用程序使用inplace插件。在我的就地插件中,我使用grails-app/conf/spring/resources.groovy中的Spring注释 Autowiring 了几个组件:

beans = {
xmlns context: 'http://www.springframework.org/schema/context'
context.'component-scan'('base-package': 'some.pkg.inplace')
}

对于我的常规Grails应用程序,我无法找到如何导入inplace插件的应用程序上下文。有没有办法使用Spring的 <import/>元素来做到这一点?否则,我必须将相同的代码放入Grails应用程序的 resources.groovy中以扫描bean。

最佳答案

您可以使用importBeans导入它,例如:

importBeans("classpath:other-context.groovy")

在这种情况下,它将从类路径中导入一个额外的上下文(可能来自inplace插件的上下文也位于类路径中)。

路径可以是 file:other-context.groovyfile:other-context.xml甚至 file:path/to/contexts/*.xml
顺便说一句,我不确定'inplace plugins',但是传统的插件可以扩展现有的spring上下文,在插件定义中有一种特殊的方法 doWithSpring。因此,您可以在此处添加自己的bean。

关于spring - 导入就地插件的Grails应用程序上下文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6836669/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com