spring beans and sessionFactory in different xml files. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T07:14:00Z http://stackoverflow.com/feeds/question/259587 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/259587/spring-beans-and-sessionfactory-in-different-xml-files 0 spring beans and sessionFactory in different xml files. chris 2008-11-03T19:02:42Z 2009-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#259599 1 Answer by Paul Croarkin for spring beans and sessionFactory in different xml files. Paul Croarkin 2008-11-03T19:08:19Z 2008-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>&lt;import resource="database-config.xml"/&gt; </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#259779 2 Answer by Dan Vinton for spring beans and sessionFactory in different xml files. Dan Vinton 2008-11-03T20:13:26Z 2008-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>&lt;beans&gt; &lt;import resource="classpath:path/to/session-factory-beans.xml"/&gt; &lt;... other bean definitions.../&gt; &lt;/beans&gt; </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>