1
我試圖在Grails插件中使用Spring DSL功能。但是,它不起作用。下面是我在我的插件的conf /春/ resources.groovy文件:在Grails插件中使用Spring DSL
import org.springframework.aop.scope.ScopedProxyFactoryBean
// Place your Spring DSL code here
beans = {
baseSvcProxy(ScopedProxyFactoryBean) {
targetBeanName = 'baseService'
proxyTargetClass = true
}
}
但是,它似乎被完全忽略。如果我將完全相同的代碼移動到應用程序的conf/spring/resources.groovy文件中,則一切正常。有沒有什麼需要做不同的插件爲這個工作?