Can I compose a Spring Configuration File from smaller ones? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T00:59:50Zhttp://stackoverflow.com/feeds/question/94542http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/94542/can-i-compose-a-spring-configuration-file-from-smaller-ones3Can I compose a Spring Configuration File from smaller ones?Allain Lalonde2008-09-18T17:10:38Z2008-09-19T20:47:10Z
<p>I have a handful of projects that all use one project for the data model. Each of these projects has its own applicationContext.xml file with a bunch of repetitive data stuff within it.</p>
<p>I'd like to have a modelContext.xml file and another for my ui.xml, etc.</p>
<p>Can I do this?</p>
http://stackoverflow.com/questions/94542/can-i-compose-a-spring-configuration-file-from-smaller-ones/94586#945861Answer by enricopulatzo for Can I compose a Spring Configuration File from smaller ones?enricopulatzo2008-09-18T17:18:08Z2008-09-18T17:18:08Z<p>Yes, you can do this via the import element.</p>
<pre><code><import resource="services.xml"/>
</code></pre>
<p>Each element's resource attribute is a valid path (e.g. classpath:foo.xml)</p>
http://stackoverflow.com/questions/94542/can-i-compose-a-spring-configuration-file-from-smaller-ones/94588#945887Answer by Nicholas Trandem for Can I compose a Spring Configuration File from smaller ones?Nicholas Trandem2008-09-18T17:18:16Z2008-09-18T17:18:16Z<p>From the <a href="http://static.springframework.org/spring/docs/2.5.5/reference/beans.html#beans-definition" rel="nofollow">Spring Docs (v 2.5.5 Section 3.2.2.1.)</a>:</p>
<blockquote>
<p>It can often be useful to split up
container definitions into multiple
XML files. One way to then load an
application context which is
configured from all these XML
fragments is to use the application
context constructor which takes
multiple Resource locations. With a
bean factory, a bean definition reader
can be used multiple times to read
definitions from each file in turn.</p>
<p>Generally, the Spring team prefers the
above approach, since it keeps
container configuration files unaware
of the fact that they are being
combined with others. An alternate
approach is to use one or more
occurrences of the element
to load bean definitions from another
file (or files). Let's look at a
sample:</p>
<p></p>
<pre><code><import resource="services.xml"/>
<import resource="resources/messageSource.xml"/>
<import resource="/resources/themeSource.xml"/>
<bean id="bean1" class="..."/>
<bean id="bean2" class="..."/>
</code></pre>
<p></p>
<p>In this example, external bean
definitions are being loaded from 3
files, services.xml,
messageSource.xml, and
themeSource.xml. All location paths
are considered relative to the
definition file doing the importing,
so services.xml in this case must be
in the same directory or classpath
location as the file doing the
importing, while messageSource.xml and
themeSource.xml must be in a resources
location below the location of the
importing file. As you can see, a
leading slash is actually ignored, but
given that these are considered
relative paths, it is probably better
form not to use the slash at all. The
contents of the files being imported
must be valid XML bean definition
files according to the Spring Schema
or DTD, including the top level
element.</p>
</blockquote>
http://stackoverflow.com/questions/94542/can-i-compose-a-spring-configuration-file-from-smaller-ones/94788#947881Answer by Asgeir S. Nilsen for Can I compose a Spring Configuration File from smaller ones?Asgeir S. Nilsen2008-09-18T17:39:35Z2008-09-18T17:39:35Z<p>We do this in our projects at work, using the classpath* resource loader in Spring. For a certain app, all appcontext files containing the application id will be loaded:</p>
<pre><code>classpath*:springconfig/spring-appname-*.xml
</code></pre>
http://stackoverflow.com/questions/94542/can-i-compose-a-spring-configuration-file-from-smaller-ones/95020#950201Answer by Allain Lalonde for Can I compose a Spring Configuration File from smaller ones?Allain Lalonde2008-09-18T18:00:53Z2008-09-18T18:00:53Z<p>Given what Nicholas pointed me to I found this in the docs. It allows me to pick at runtime the bean contexts I'm interested in.</p>
<pre><code>GenericApplicationContext ctx = new GenericApplicationContext();
XmlBeanDefinitionReader xmlReader = new XmlBeanDefinitionReader(ctx);
xmlReader.loadBeanDefinitions(new ClassPathResource("modelContext.xml"));
xmlReader.loadBeanDefinitions(new ClassPathResource("uiContext.xml"));
ctx.refresh();
</code></pre>
http://stackoverflow.com/questions/94542/can-i-compose-a-spring-configuration-file-from-smaller-ones/96039#960390Answer by mangst for Can I compose a Spring Configuration File from smaller ones?mangst2008-09-18T19:28:35Z2008-09-18T19:28:35Z<p>Here's what I've done for one of my projects. In your <code>web.xml</code> file, you can define the Spring bean files you want your application to use:</p>
<pre><code> <context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/applicationContext.xml
/WEB-INF/modelContext.xml
/WEB-INF/ui.xml
</param-value>
</context-param>
</code></pre>
<p>If this isn't defined in your <code>web.xml</code>, it automatically looks for <code>/WEB-INF/applicationContext.xml</code></p>
http://stackoverflow.com/questions/94542/can-i-compose-a-spring-configuration-file-from-smaller-ones/96583#965830Answer by bpapa for Can I compose a Spring Configuration File from smaller ones?bpapa2008-09-18T20:31:46Z2008-09-18T20:31:46Z<p>Another thing to note is that although you can do this, if you aren't a big fan of XML you can do a lot of stuff in Spring 2.5 with annotations. </p>
http://stackoverflow.com/questions/94542/can-i-compose-a-spring-configuration-file-from-smaller-ones/105496#1054960Answer by Arne Burmeister for Can I compose a Spring Configuration File from smaller ones?Arne Burmeister2008-09-19T20:47:10Z2008-09-19T20:47:10Z<p>Yes, you can using the tag inside the "Master" bean file. But what about the why? Why not listing the files in the contextConfigLocation context param of the wab.xml or als locations array of the bean factory?</p>
<p>I think mutliple files are much easier to handle. You may choose only some of them for a test, simply add rename or remove a part of the application and you may boundle different applications with the same config files (a webapp and a commandline version with some overlapping bean definitions).</p>