20
Sep
Model Driven Architecture and Spring – friend or foe?
Issue 10.2005 of the german Java Magazin contains an article by Markus Völter, Eberhard Wolff and me about how the Spring framework and model driven concepts fit together. You can read the article online.
26
Jan
Loading more than one applicationContext XML file into a Spring context
You can use this command to load more than one application context file into a spring context:
String serviceContextLocation = "service.xml";
String serverContextLocation = "server.xml";
ClassPathXmlApplicationContext combinedContext = new ClassPathXmlApplicationContext(new String[] {serviceContextLocation, serverContextLocation});

