ScopedProxyTests-map.xml 928 字节
Newer Older
1 2 3 4
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		xmlns:aop="http://www.springframework.org/schema/aop"
S
Spring Operator 已提交
5 6
		xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-2.0.xsd
				http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

	<bean id="singletonMap" class="java.util.Collections" factory-method="singletonMap" scope="prototype">
		<aop:scoped-proxy/>
		<constructor-arg value="test"/>
		<constructor-arg value="1234"/>
	</bean>

	<bean id="synchronizedMap" class="java.util.Collections" factory-method="synchronizedMap" scope="singleton">
		<constructor-arg ref="singletonParams"/>
	</bean>

	<bean id="simpleMap" class="java.util.HashMap" scope="prototype">
		<aop:scoped-proxy/>
	</bean>

</beans>