branch develop updated (1949400 -> 7ad7c05)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository observe. See http://git.codelutin.com/observe.git from 1949400 - Suppression d'objets dans le paquetage business - Suppression de certainnes méthodes qui ne servent plus (createOpeningBinder) new 7ad7c05 closing service factory at application shutdown The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 7ad7c0576f75f6f3cebda16f4c7e3bf6ce17fe3d Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Oct 21 16:44:48 2015 +0200 closing service factory at application shutdown Summary of changes: .../main/java/fr/ird/observe/ObserveSwingApplicationContext.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See http://git.codelutin.com/observe.git commit 7ad7c0576f75f6f3cebda16f4c7e3bf6ce17fe3d Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Oct 21 16:44:48 2015 +0200 closing service factory at application shutdown --- .../main/java/fr/ird/observe/ObserveSwingApplicationContext.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/observe-application-swing/src/main/java/fr/ird/observe/ObserveSwingApplicationContext.java b/observe-application-swing/src/main/java/fr/ird/observe/ObserveSwingApplicationContext.java index 258f488..c221a29 100644 --- a/observe-application-swing/src/main/java/fr/ird/observe/ObserveSwingApplicationContext.java +++ b/observe-application-swing/src/main/java/fr/ird/observe/ObserveSwingApplicationContext.java @@ -360,12 +360,18 @@ public class ObserveSwingApplicationContext extends DefaultApplicationContext im if (getDataSource() != null && dataSource.isOpen()) { if (log.isInfoEnabled()) { - log.info("Closing dataSource : "+dataSource.getConnection()); + log.info("Closing dataSource : " + dataSource.getConnection()); } dataSource.close(); setDataSource(null); } + ObserveServiceMainFactory serviceMainFactory = ObserveServiceMainFactory.get(); + if (log.isInfoEnabled()) { + log.info("Closing main service factory: " + serviceMainFactory); + } + serviceMainFactory.close(); + // fermeture du context principal clear(); -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.
participants (1)
-
codelutin.com scm