------------------------------------------------------------ revno: 22333 committer: Lars Helge Overland <larshe...@gmail.com> branch nick: dhis2 timestamp: Tue 2016-03-15 17:15:22 +0100 message: Impl DatabaseInfoFactoryBean added: dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/database/DatabaseInfoFactoryBean.java modified: dhis-2/dhis-services/dhis-service-analytics/src/main/java/org/hisp/dhis/analytics/table/AbstractJdbcTableManager.java dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/system/DefaultSystemService.java dhis-2/dhis-support/dhis-support-system/src/main/resources/META-INF/dhis/beans.xml
-- lp:dhis2 https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk Your team DHIS 2 developers is subscribed to branch lp:dhis2. To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-services/dhis-service-analytics/src/main/java/org/hisp/dhis/analytics/table/AbstractJdbcTableManager.java' --- dhis-2/dhis-services/dhis-service-analytics/src/main/java/org/hisp/dhis/analytics/table/AbstractJdbcTableManager.java 2016-03-15 15:09:32 +0000 +++ dhis-2/dhis-services/dhis-service-analytics/src/main/java/org/hisp/dhis/analytics/table/AbstractJdbcTableManager.java 2016-03-15 16:15:22 +0000 @@ -57,6 +57,7 @@ import org.hisp.dhis.period.PeriodType; import org.hisp.dhis.resourcetable.ResourceTableService; import org.hisp.dhis.setting.SystemSettingManager; +import org.hisp.dhis.system.database.DatabaseInfo; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jdbc.BadSqlGrammarException; import org.springframework.jdbc.core.JdbcTemplate; @@ -97,6 +98,9 @@ @Autowired protected StatementBuilder statementBuilder; + + @Autowired + protected DatabaseInfo databaseInfo; protected JdbcTemplate jdbcTemplate; === modified file 'dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/system/DefaultSystemService.java' --- dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/system/DefaultSystemService.java 2016-01-04 02:27:49 +0000 +++ dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/system/DefaultSystemService.java 2016-03-15 16:15:22 +0000 @@ -45,7 +45,7 @@ import org.hisp.dhis.external.location.LocationManagerException; import org.hisp.dhis.setting.SettingKey; import org.hisp.dhis.setting.SystemSettingManager; -import org.hisp.dhis.system.database.DatabaseInfoProvider; +import org.hisp.dhis.system.database.DatabaseInfo; import org.hisp.dhis.system.util.DateUtils; import org.hisp.dhis.system.util.SystemUtils; import org.springframework.beans.factory.annotation.Autowired; @@ -61,7 +61,7 @@ private LocationManager locationManager; @Autowired - private DatabaseInfoProvider databaseInfoProvider; + private DatabaseInfo databaseInfo; @Autowired private ConfigurationService configurationService; @@ -176,7 +176,7 @@ // Database // --------------------------------------------------------------------- - info.setDatabaseInfo( databaseInfoProvider.getDatabaseInfo() ); + info.setDatabaseInfo( databaseInfo ); // --------------------------------------------------------------------- // System env variables and properties === added file 'dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/database/DatabaseInfoFactoryBean.java' --- dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/database/DatabaseInfoFactoryBean.java 1970-01-01 00:00:00 +0000 +++ dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/database/DatabaseInfoFactoryBean.java 2016-03-15 16:15:22 +0000 @@ -0,0 +1,64 @@ +package org.hisp.dhis.system.database; + +/* + * Copyright (c) 2004-2016, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +import org.springframework.beans.factory.FactoryBean; + +/** + * @author Lars Helge Overland + */ +public class DatabaseInfoFactoryBean + implements FactoryBean<DatabaseInfo> +{ + private DatabaseInfoProvider databaseInfoProvider; + + public void setDatabaseInfoProvider( DatabaseInfoProvider databaseInfoProvider ) + { + this.databaseInfoProvider = databaseInfoProvider; + } + + @Override + public DatabaseInfo getObject() + throws Exception + { + return databaseInfoProvider.getDatabaseInfo(); + } + + @Override + public Class<?> getObjectType() + { + return DatabaseInfo.class; + } + + @Override + public boolean isSingleton() + { + return true; + } +} === modified file 'dhis-2/dhis-support/dhis-support-system/src/main/resources/META-INF/dhis/beans.xml' --- dhis-2/dhis-support/dhis-support-system/src/main/resources/META-INF/dhis/beans.xml 2016-03-15 15:23:35 +0000 +++ dhis-2/dhis-support/dhis-support-system/src/main/resources/META-INF/dhis/beans.xml 2016-03-15 16:15:22 +0000 @@ -14,6 +14,10 @@ <property name="hibernateConfigurationProvider" ref="hibernateConfigurationProvider" /> <property name="jdbcTemplate" ref="jdbcTemplate" /> </bean> + + <bean id="databaseInfo" class="org.hisp.dhis.system.database.DatabaseInfoFactoryBean"> + <property name="databaseInfoProvider" ref="databaseInfoProvider" /> + </bean> <bean id="taskScheduler" class="org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler"> <property name="poolSize" value="10" />
_______________________________________________ Mailing list: https://launchpad.net/~dhis2-devs Post to : dhis2-devs@lists.launchpad.net Unsubscribe : https://launchpad.net/~dhis2-devs More help : https://help.launchpad.net/ListHelp