I want to be able to include Services in my Groovy Classes in /src/groovy
I found a solution with :
myBean(MyBean) { bean ->
bean.autowire = 'byName'
}
But I dont want to make this entry in the resources.groovy
for all Class, so is there a Solution to Autowire all classes in a specific folder?
I'm using grails 2.4.3