Streamline XML namespace support towards unversioned schemas

This commit also removes support code for outdated options which were only available in older schema versions.

Issue: SPR-13499
This commit is contained in:
Juergen Hoeller
2016-07-05 20:50:00 +02:00
parent 12d373659a
commit bc2c22d51e
217 changed files with 413 additions and 41094 deletions

View File

@@ -47,12 +47,12 @@
</bean>
<bean id="txInterceptor" class="org.springframework.transaction.interceptor.TransactionInterceptor">
<property name="transactionManager"><ref local="txManager"/></property>
<property name="transactionAttributeSource"><ref local="tas"/></property>
<property name="transactionManager"><ref bean="txManager"/></property>
<property name="transactionAttributeSource"><ref bean="tas"/></property>
</bean>
<bean id="txAdvisor" class="org.springframework.transaction.interceptor.TransactionAttributeSourceAdvisor">
<property name="transactionInterceptor"><ref local="txInterceptor"/></property>
<property name="transactionInterceptor"><ref bean="txInterceptor"/></property>
<property name="order"><value>10</value></property>
</bean>
@@ -66,8 +66,8 @@
scope="prototype">
<property name="dependencies">
<list>
<ref local="singletonDependency"/>
<ref local="prototypeDependency"/>
<ref bean="singletonDependency"/>
<ref bean="prototypeDependency"/>
</list>
</property>
</bean>