Trying to load spring beans from custom groovy file in Grails 2.3.7.
I know this question has been asked before, but after hours of searching, I\'m unable to fi
We can import beans from different groovy/xml file in the following way too : - use the following in resources.groovy -
importBeans 'file:camel-beans.groovy' OR importBeans('classpath:/camel-config.xml')
Place camel-beans.groovy along with resources.groovy and provide package as "package spring" for first case, otherwise put it in web app classpath and use the second way to do it.