Merged HEAD-BUG-FIX (4.3/Cloud) to HEAD (4.3/Cloud)

68146: Merged V4.2-BUG-FIX (4.2.3) to HEAD-BUG-FIX (4.3/Cloud)
      67720: Merged V4.1-BUG-FIX (4.1.9) to V4.2-BUG-FIX (4.2.3)
         67671: Fix MNT-10916: Dictionary Web Service method getClasses() is slow
                - Reverted 55733 as it caused cyclic Spring dependencies
                - Effectively revert fixes for ALF-19912 (now MNT-11251): Impossible to upload/create content when lifecycle workflow is deployed
                  which causes 52K transactions to be created when the CMIS dictionary loads
         Fixes MNT-10930: Alfresco startup time increases exponentially when there's little lag between the app server and database server


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@68430 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mark Rogers
2014-04-30 16:17:10 +00:00
parent 827f73e493
commit 32c2528634
2 changed files with 1 additions and 30 deletions

View File

@@ -744,7 +744,7 @@
<property name="targetSource">
<bean class="org.alfresco.config.NonBlockingLazyInitTargetSource">
<property name="targetBeanName">
<idref bean="MessageService" />
<idref bean="messageService" />
</property>
</bean>
</property>

View File

@@ -1538,33 +1538,4 @@
</property>
</bean>
<bean id="MessageService" class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
<list>
<value>org.alfresco.repo.i18n.MessageService</value>
</list>
</property>
<property name="target">
<ref bean="messageService"/>
</property>
<property name="interceptorNames">
<list>
<idref local="MessageService_transaction"/>
</list>
</property>
</bean>
<bean id="MessageService_transaction" class="org.alfresco.repo.transaction.RetryingTransactionInterceptor">
<property name="transactionService">
<ref bean="TransactionService"/>
</property>
<property name="transactionManager">
<ref bean="transactionManager"/>
</property>
<property name="transactionAttributes">
<props>
<prop key="getMessage">${server.transaction.mode.readOnly}</prop>
</props>
</property>
</bean>
</beans>