Spring xml files and import XML files.

It seems you can do it in spring

file A.xml imports B.xml
file B.xml imports C.xml
file C.xml imports A.xml or B.xml

This really kills our project, because the dependencies between the xml files are mixed up, and when you only want to pull out one file, it tends to pull all this other trash. Is there any way in spring to prevent this circular dependency from occurring so that it explodes on startup?

thanks dean

+5
source share
1 answer

It seems like something similar was noted many years ago, but has not yet been implemented: SPR-1142 .

+2
source

All Articles