Referencing my spring config files from another using configset
Hi,
I have two projects - projectA and projectB - in projectA I have the following files:
Code:
applicationContext.xml
applicationContext-hibernate.xml
applicationContext-foo.xml
action-servlet.xml
in projectB I have another action-servlet.xml which has references to beans in the applicationContext*.xml in projectA. Validation seems to work, so does clicking on classes, but I have problem when I try click on a ref bean="", like below...
Code:
<property name="cityManager"><ref bean="cityManager"/></property>
I have added Spring Project Natures to each project and have created a config set in projectB that includes the applicationContext*.xml files from projectA and the action-servlet.xml from projectB. I have also checked Project References --> projectA in the project properties of projectB. Still no luck - any thoughts why I cant click through?
Thanks,
Andrew