dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #13412
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 4287: several minor changes
------------------------------------------------------------
revno: 4287
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Fri 2011-08-12 20:53:10 +0200
message:
several minor changes
modified:
dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/version/DefaultVersionService.java
dhis-2/dhis-support/dhis-support-hibernate/src/main/resources/ehcache.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-core/src/main/java/org/hisp/dhis/version/DefaultVersionService.java'
--- dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/version/DefaultVersionService.java 2011-08-11 11:31:42 +0000
+++ dhis-2/dhis-services/dhis-service-core/src/main/java/org/hisp/dhis/version/DefaultVersionService.java 2011-08-12 18:53:10 +0000
@@ -25,6 +25,12 @@
import java.util.Collection;
+import org.springframework.transaction.annotation.Transactional;
+
+/**
+ * @author mortenoh
+ */
+@Transactional
public class DefaultVersionService
implements VersionService
{
=== modified file 'dhis-2/dhis-support/dhis-support-hibernate/src/main/resources/ehcache.xml'
--- dhis-2/dhis-support/dhis-support-hibernate/src/main/resources/ehcache.xml 2011-08-04 10:06:15 +0000
+++ dhis-2/dhis-support/dhis-support-hibernate/src/main/resources/ehcache.xml 2011-08-12 18:53:10 +0000
@@ -1,271 +1,184 @@
<?xml version="1.0" encoding="UTF-8"?>
<ehcache>
- <diskStore path="java.io.tmpdir"/>
+ <diskStore path="java.io.tmpdir" />
- <defaultCache
- maxElementsInMemory="400000"
- eternal="false"
- timeToIdleSeconds="360"
- timeToLiveSeconds="720"
- overflowToDisk="false"
- diskPersistent="false"
- diskExpiryThreadIntervalSeconds="720"
- memoryStoreEvictionPolicy="LRU"/>
+ <defaultCache maxElementsInMemory="400000" eternal="false" timeToIdleSeconds="360" timeToLiveSeconds="720"
+ overflowToDisk="false" diskPersistent="false" diskExpiryThreadIntervalSeconds="720" memoryStoreEvictionPolicy="LRU" />
<!-- Hibernate entities -->
- <cache name="org.hisp.dhis.dataelement.DataElement"
- maxElementsInMemory="4000"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElementCategoryCombo"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElementCategory"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElementCategoryOption"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElementCategoryOptionCombo"
- maxElementsInMemory="800"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElementGroup"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElementGroupSet"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.indicator.Indicator"
- maxElementsInMemory="1000"/>
-
- <cache name="org.hisp.dhis.indicator.IndicatorGroup"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.indicator.IndicatorGroupSet"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.indicator.IndicatorType"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.datadictionary.DataDictionary"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.period.Period"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.period.PeriodType"
- maxElementsInMemory="50"/>
-
- <cache name="org.hisp.dhis.dataset.DataSet"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.dataset.Section"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElementOperand"
- maxElementsInMemory="4000"/>
-
- <cache name="org.hisp.dhis.expression.Expression"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.validation.ValidationRule"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.validation.ValidationRuleGroup"
- maxElementsInMemory="50"/>
-
- <cache name="org.hisp.dhis.organisationunit.OrganisationUnit"
- maxElementsInMemory="20000"/>
-
- <cache name="org.hisp.dhis.organisationunit.OrganisationUnitGroup"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.organisationunit.OrganisationUnitGroupSet"
- maxElementsInMemory="50"/>
-
- <cache name="org.hisp.dhis.user.User"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.user.UserSetting"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.user.UserCredentials"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.user.UserCredentials.userAuthorityGroups"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.options.SystemSetting"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.translation.Translation"
- maxElementsInMemory="8000"/>
-
- <cache name="org.hisp.dhis.message.MessageConversation"
- maxElementsInMemory="500"/>
-
- <cache name="org.hisp.dhis.message.Message"
- maxElementsInMemory="1000"/>
-
- <cache name="org.hisp.dhis.message.UserMessage"
- maxElementsInMemory="50000"/>
-
- <cache name="org.hisp.dhis.chart.Chart"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.chart.ChartGroup"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.reporttable.ReportTable"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.reporttable.ReportTableGroup"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.report.Report"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.report.ReportGroup"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.document.Document"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.dashboard.DashboardContent"
- maxElementsInMemory="1000"/>
-
- <cache name="org.hisp.dhis.constant.Constant"
- maxElementsInMemory="200"/>
-
+ <cache name="org.hisp.dhis.dataelement.DataElement" maxElementsInMemory="4000" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElementCategoryCombo" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElementCategory" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElementCategoryOption" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElementCategoryOptionCombo" maxElementsInMemory="800" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElementGroup" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElementGroupSet" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.indicator.Indicator" maxElementsInMemory="1000" />
+
+ <cache name="org.hisp.dhis.indicator.IndicatorGroup" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.indicator.IndicatorGroupSet" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.indicator.IndicatorType" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.datadictionary.DataDictionary" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.period.Period" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.period.PeriodType" maxElementsInMemory="50" />
+
+ <cache name="org.hisp.dhis.dataset.DataSet" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.dataset.Section" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElementOperand" maxElementsInMemory="4000" />
+
+ <cache name="org.hisp.dhis.expression.Expression" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.validation.ValidationRule" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.validation.ValidationRuleGroup" maxElementsInMemory="50" />
+
+ <cache name="org.hisp.dhis.organisationunit.OrganisationUnit" maxElementsInMemory="20000" />
+
+ <cache name="org.hisp.dhis.organisationunit.OrganisationUnitGroup" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.organisationunit.OrganisationUnitGroupSet" maxElementsInMemory="50" />
+
+ <cache name="org.hisp.dhis.user.User" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.user.UserSetting" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.user.UserCredentials" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.user.UserCredentials.userAuthorityGroups" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.options.SystemSetting" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.translation.Translation" maxElementsInMemory="8000" />
+
+ <cache name="org.hisp.dhis.message.MessageConversation" maxElementsInMemory="500" />
+
+ <cache name="org.hisp.dhis.message.Message" maxElementsInMemory="1000" />
+
+ <cache name="org.hisp.dhis.message.UserMessage" maxElementsInMemory="50000" />
+
+ <cache name="org.hisp.dhis.chart.Chart" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.chart.ChartGroup" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.reporttable.ReportTable" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.reporttable.ReportTableGroup" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.report.Report" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.report.ReportGroup" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.document.Document" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.dashboard.DashboardContent" maxElementsInMemory="1000" />
+
+ <cache name="org.hisp.dhis.constant.Constant" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.version.Version" maxElementsInMemory="100" />
+
<!-- Hibernate Associations -->
-
- <cache name="org.hisp.dhis.dataelement.DataElementCategoryCombo.categories"
- maxElementsInMemory="300"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElementCategoryCombo.optionCombos"
- maxElementsInMemory="500"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElementCategory.categoryOptions"
- maxElementsInMemory="300"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElementCategoryOption.categoryOptionCombos"
- maxElementsInMemory="500"/>
-
- <cache name="org.hisp.dhis.dataset.DataSet.dataElements"
- maxElementsInMemory="4000"/>
-
- <cache name="org.hisp.dhis.dataset.DataSet.sources"
- maxElementsInMemory="20000"/>
-
- <cache name="org.hisp.dhis.dataset.DataSet.sections"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElement.groups"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElement.dataSets"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElementGroup.members"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.dataelement.DataElementGroupSet.members"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.indicator.Indicator.groups"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.indicator.Indicator.dataSets"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.indicator.IndicatorGroup.members"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.indicator.IndicatorGroupSet.members"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.dataset.Section.dataElements"
- maxElementsInMemory="4000"/>
-
- <cache name="org.hisp.dhis.dataset.Section.greyedFields"
- maxElementsInMemory="1000"/>
-
- <cache name="org.hisp.dhis.expression.Expression.dataElementsInExpression"
- maxElementsInMemory="1000"/>
-
- <cache name="org.hisp.dhis.organisationunit.OrganisationUnit.children"
- maxElementsInMemory="20000"/>
-
- <cache name="org.hisp.dhis.organisationunit.OrganisationUnit.dataSets"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.organisationunit.OrganisationUnit.groups"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.organisationunit.OrganisationUnit.users"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.organisationunit.OrganisationUnitGroup.members"
- maxElementsInMemory="10000"/>
-
+
+ <cache name="org.hisp.dhis.dataelement.DataElementCategoryCombo.categories" maxElementsInMemory="300" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElementCategoryCombo.optionCombos" maxElementsInMemory="500" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElementCategory.categoryOptions" maxElementsInMemory="300" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElementCategoryOption.categoryOptionCombos" maxElementsInMemory="500" />
+
+ <cache name="org.hisp.dhis.dataset.DataSet.dataElements" maxElementsInMemory="4000" />
+
+ <cache name="org.hisp.dhis.dataset.DataSet.sources" maxElementsInMemory="20000" />
+
+ <cache name="org.hisp.dhis.dataset.DataSet.sections" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElement.groups" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElement.dataSets" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElementGroup.members" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.dataelement.DataElementGroupSet.members" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.indicator.Indicator.groups" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.indicator.Indicator.dataSets" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.indicator.IndicatorGroup.members" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.indicator.IndicatorGroupSet.members" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.dataset.Section.dataElements" maxElementsInMemory="4000" />
+
+ <cache name="org.hisp.dhis.dataset.Section.greyedFields" maxElementsInMemory="1000" />
+
+ <cache name="org.hisp.dhis.expression.Expression.dataElementsInExpression" maxElementsInMemory="1000" />
+
+ <cache name="org.hisp.dhis.organisationunit.OrganisationUnit.children" maxElementsInMemory="20000" />
+
+ <cache name="org.hisp.dhis.organisationunit.OrganisationUnit.dataSets" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.organisationunit.OrganisationUnit.groups" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.organisationunit.OrganisationUnit.users" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.organisationunit.OrganisationUnitGroup.members" maxElementsInMemory="10000" />
+
<cache name="org.hisp.dhis.organisationunit.OrganisationUnitGroupSet.organisationUnitGroups"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.report.Report.groups"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.report.ReportGroup.members"
- maxElementsInMemory="400"/>
-
- <cache name="org.hisp.dhis.reporttable.ReportTable.dataElements"
- maxElementsInMemory="1500"/>
-
- <cache name="org.hisp.dhis.reporttable.ReportTable.indicators"
- maxElementsInMemory="500"/>
-
- <cache name="org.hisp.dhis.reporttable.ReportTable.dataSets"
- maxElementsInMemory="100"/>
-
- <cache name="org.hisp.dhis.reporttable.ReportTable.periods"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.reporttable.ReportTable.units"
- maxElementsInMemory="2000"/>
-
- <cache name="org.hisp.dhis.reporttable.ReportTable.groups"
- maxElementsInMemory="500"/>
-
- <cache name="org.hisp.dhis.reporttable.ReportTableGroup.members"
- maxElementsInMemory="500"/>
-
- <cache name="org.hisp.dhis.chart.Chart.dataElements"
- maxElementsInMemory="1500"/>
-
- <cache name="org.hisp.dhis.chart.Chart.indicators"
- maxElementsInMemory="500"/>
-
- <cache name="org.hisp.dhis.chart.Chart.periods"
- maxElementsInMemory="200"/>
-
- <cache name="org.hisp.dhis.chart.Chart.organisationUnits"
- maxElementsInMemory="2000"/>
-
- <cache name="org.hisp.dhis.chart.Chart.groups"
- maxElementsInMemory="500"/>
-
- <cache name="org.hisp.dhis.chart.ChartGroup.members"
- maxElementsInMemory="500"/>
-
- <cache name="org.hisp.dhis.user.User.organisationUnits"
- maxElementsInMemory="20000"/>
-
+ maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.report.Report.groups" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.report.ReportGroup.members" maxElementsInMemory="400" />
+
+ <cache name="org.hisp.dhis.reporttable.ReportTable.dataElements" maxElementsInMemory="1500" />
+
+ <cache name="org.hisp.dhis.reporttable.ReportTable.indicators" maxElementsInMemory="500" />
+
+ <cache name="org.hisp.dhis.reporttable.ReportTable.dataSets" maxElementsInMemory="100" />
+
+ <cache name="org.hisp.dhis.reporttable.ReportTable.periods" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.reporttable.ReportTable.units" maxElementsInMemory="2000" />
+
+ <cache name="org.hisp.dhis.reporttable.ReportTable.groups" maxElementsInMemory="500" />
+
+ <cache name="org.hisp.dhis.reporttable.ReportTableGroup.members" maxElementsInMemory="500" />
+
+ <cache name="org.hisp.dhis.chart.Chart.dataElements" maxElementsInMemory="1500" />
+
+ <cache name="org.hisp.dhis.chart.Chart.indicators" maxElementsInMemory="500" />
+
+ <cache name="org.hisp.dhis.chart.Chart.periods" maxElementsInMemory="200" />
+
+ <cache name="org.hisp.dhis.chart.Chart.organisationUnits" maxElementsInMemory="2000" />
+
+ <cache name="org.hisp.dhis.chart.Chart.groups" maxElementsInMemory="500" />
+
+ <cache name="org.hisp.dhis.chart.ChartGroup.members" maxElementsInMemory="500" />
+
+ <cache name="org.hisp.dhis.user.User.organisationUnits" maxElementsInMemory="20000" />
+
<!-- Hibernate Query Cache -->
-
- <cache name="org.hibernate.cache.StandardQueryCache"
- maxElementsInMemory="200000"/>
-
- <cache name="org.hibernate.cache.UpdateTimestampsCache"
- maxElementsInMemory="1000"/>
+
+ <cache name="org.hibernate.cache.StandardQueryCache" maxElementsInMemory="200000" />
+
+ <cache name="org.hibernate.cache.UpdateTimestampsCache" maxElementsInMemory="1000" />
</ehcache>