Hello, here I have problem that is getting me:
If I define the component-scan context defined like this
won't work any of both(com.transporte.mbean or com.transporte.persistencia.dao) they are not injected but if I do thisPHP Code:<context:component-scan base-package="com.transporte.mbean, com.transporte.persistencia.dao"/>
the injected definition hasm an instance, but I need to resolve the daos annotations classes too, snifPHP Code:<context:component-scan base-package="com.transporte.mbean"/>
For eg: im using a backBeanUser injected to be used un a jsf page, and a serviceUserLogin is injected in this backBeanUser, i can't make them both work together(only the first one works)
Does someone know how can I solve this? I don't know hoew to proceed???


:
Reply With Quote