SPR-3360: util:property-path like functionality for the p-namespace

This commit is contained in:
Arjen Poutsma
2009-01-22 12:01:25 +00:00
parent 1b6c4929ad
commit becea6115e
2 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?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:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="foo" class="test.beans.TestBean" p:name="Baz"/>
<bean id="bar" class="test.beans.TestBean" p:name="#{foo.name}"/>
</beans>