mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged HEAD-BUG-FIX (4.3/Cloud) to HEAD (4.3/Cloud)
68145: Merged V4.2-BUG-FIX (4.2.3) to HEAD-BUG-FIX (4.3/Cloud) 67653: Reverse merged << Caused build error https://bamboo.alfresco.com/bamboo/browse/ALF-ENTERPRISEV42BUGFIX-288 >> 67559: MNT-10930 : Merged V4.1-BUG-FIX (4.1.9) to V4.2-BUG-FIX (4.2.3) 67557: Merged DEV to V4.1-BUG-FIX (4.1.9) 64119: MNT-10916 : Dictionary Web Service method getClasses() is slow Removed the fix for ALF-19912 and added a proxy for ContentService to messageService. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@68429 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -491,7 +491,7 @@
|
|||||||
<ref bean="nodeService" />
|
<ref bean="nodeService" />
|
||||||
</property>
|
</property>
|
||||||
<property name="contentService">
|
<property name="contentService">
|
||||||
<ref bean="ContentService"/>
|
<ref bean="contentService"/>
|
||||||
</property>
|
</property>
|
||||||
<property name="resourceBundleBaseNamesCache">
|
<property name="resourceBundleBaseNamesCache">
|
||||||
<ref bean="resourceBundleBaseNamesCache"/>
|
<ref bean="resourceBundleBaseNamesCache"/>
|
||||||
@@ -744,7 +744,7 @@
|
|||||||
<property name="targetSource">
|
<property name="targetSource">
|
||||||
<bean class="org.alfresco.config.NonBlockingLazyInitTargetSource">
|
<bean class="org.alfresco.config.NonBlockingLazyInitTargetSource">
|
||||||
<property name="targetBeanName">
|
<property name="targetBeanName">
|
||||||
<idref bean="messageService" />
|
<idref bean="MessageService" />
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
</property>
|
</property>
|
||||||
|
@@ -1537,4 +1537,34 @@
|
|||||||
</props>
|
</props>
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</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>
|
</beans>
|
||||||
|
Reference in New Issue
Block a user