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
Try:
@Configuration @ImportResource( { "spring-context1.xml", "spring-context2.xml" } ) public class ConfigClass { }