|
Spring Framework example source code file (testUtilNamespace.xml)
The Spring Framework testUtilNamespace.xml source code<?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:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd"> <util:constant id="min" static-field=" java.lang.Integer. MIN_VALUE "/> <util:constant static-field="java.lang.Integer.MAX_VALUE"/> <util:property-path id="name" path=" configuredBean. name "/> <bean id="testBean" class="org.springframework.beans.TestBean" scope="prototype"> <property name="name"> <util:property-path path="configuredBean.name"/> </property> <property name="someProperties"> <util:properties location="classpath:org/springframework/beans/factory/config/util.properties"/> </property> </bean> <bean id="constructedTestBean" class="org.springframework.beans.TestBean"> <constructor-arg index="0"> <util:property-path path="configuredBean.name"/> </constructor-arg> </bean> <bean id="configuredBean" class="org.springframework.beans.TestBean"> <property name="name" value="Rob Harrop"/> </bean> <util:map id="simpleMap"> <entry key="foo" value="bar"/> </util:map> <util:map id="scopedMap" scope="prototype"> <entry key="foo" value="bar"/> </util:map> <util:map id="mapWithRef" map-class="java.util.TreeMap"> <entry key="bean" value-ref="testBean"/> </util:map> <util:list id="simpleList"> <value>Rob Harrop </util:list> <util:list id="scopedList" scope="prototype"> <value>Rob Harrop </util:list> <util:set id="simpleSet"> <value>Rob Harrop </util:set> <util:set id="scopedSet" scope="prototype"> <value>Rob Harrop </util:set> <bean id="nestedCollectionsBean" class="org.springframework.beans.TestBean"> <property name="someList"> <util:list> <value>foo </util:list> </property> <property name="someSet"> <util:set> <value>bar </util:set> </property> <property name="someMap"> <util:map> <entry key="foo"> <util:set> <value>bar </util:set> </entry> </util:map> </property> </bean> <bean id="nestedCustomTagBean" class="org.springframework.beans.TestBean" scope="prototype"> <property name="someList"> <list> <util:constant static-field="java.lang.Integer.MIN_VALUE"/> </list> </property> <property name="someSet"> <set> <util:constant static-field="java.lang.Integer.MIN_VALUE"/> </set> </property> <property name="someMap"> <map> <entry> <key> Other Spring Framework examples (source code examples)Here is a short list of links related to this Spring Framework testUtilNamespace.xml source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.