spring beans and sessionFactory in different xml files. - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T07:14:00Zhttp://stackoverflow.com/feeds/question/259587http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/259587/spring-beans-and-sessionfactory-in-different-xml-files0spring beans and sessionFactory in different xml files.chris2008-11-03T19:02:42Z2009-01-21T11:54:40Z
<p>we have 3 applications using 3 different spring configuration files. But we have one database and one datasource,so one sessionFactory. how can we import the sessionFactory bean into the 3 different spring config files.</p>
http://stackoverflow.com/questions/259587/spring-beans-and-sessionfactory-in-different-xml-files/259599#2595991Answer by Paul Croarkin for spring beans and sessionFactory in different xml files.Paul Croarkin2008-11-03T19:08:19Z2008-11-03T19:16:18Z<p>If you are using XML configuration:</p>
<p>Put your database settings in a Spring configuration called "database-config.xml" and import it in the other configuration files.</p>
<pre><code><import resource="database-config.xml"/>
</code></pre>
<p>As to how you share it among three applications is more of a Configuration Management issue. You could use ant / maven to check it out of a repository and move it into the correct location.</p>
http://stackoverflow.com/questions/259587/spring-beans-and-sessionfactory-in-different-xml-files/259779#2597792Answer by Dan Vinton for spring beans and sessionFactory in different xml files.Dan Vinton2008-11-03T20:13:26Z2008-11-03T20:13:26Z<p>Configure your SessionFactory in a single XML file and import this configuration into whichever applications' Spring contexts need it.</p>
<p>If you use classpath-based importing like this:</p>
<pre><code><beans>
<import resource="classpath:path/to/session-factory-beans.xml"/>
<... other bean definitions.../>
</beans>
</code></pre>
<p>Then your distribution mechanism is pretty flexible, since the classloader will resolve the resource for you. You could </p>
<ul>
<li>copy session-factory-beans.xml into each project that requires it, or </li>
<li>add it to a jarfile and share that amongst the applications, or </li>
<li>add it to shared/classes if the applications are all running inside the same application server.</li>
</ul>