-
multiple xml files
How can I tell Spring ide to look for my beans in another files? I have a daoConfig.xml and a servicesConfig.xml, both set on my beans view. But on the servicesConfig it complains about not finding hotelDao which is declared on the daoConfig file.
What's wrong here?
I'm using 1.2.4 version
Regards
-
Hi,
you need to put your two bean definition files into one Spring IDE config set. By adding config files to a config file set one can tell Spring IDE to merge the files into one application context and run the validation on the merged configuration.
For more details refer to http://springide.org/project/wiki/Sp...setsopti onal.
Cheers
Christian