I\'m trying to find the syntax for importing multiple spring xml context files using Spring 3 @ImportResource annotation.
I have tried using comma to separate the fi
You need to add the classpath before the file name
@ImportResource(value = { "classpath:file1.xml", "classpath:file2.xml" })