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.
|
|
Configure your SessionFactory in a single XML file and import this configuration into whichever applications' Spring contexts need it. If you use classpath-based importing like this:
Then your distribution mechanism is pretty flexible, since the classloader will resolve the resource for you. You could
|
||
|
|
|
|
If you are using XML configuration: Put your database settings in a Spring configuration called "database-config.xml" and import it in the other configuration files.
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. |
|||
|
|
