alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Spring Framework example source code file (proxyFactoryDoubleTargetSourceTests.xml)

This example Spring Framework source code file (proxyFactoryDoubleTargetSourceTests.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Spring Framework tags/keywords

bean, bean, doctype, doctype, not, not, public, spring//dtd, tests, utf-8, utf-8

The Spring Framework proxyFactoryDoubleTargetSourceTests.xml source code

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd">

<!--
	Tests for misconfiguring the proxy factory bean using a target source in the
	interceptor list as well as set by the targetSource property
-->	

<beans>
	
	<bean id="eveTargetSource" class="org.springframework.aop.target.SingletonTargetSource">
		<constructor-arg>
			<bean class="org.springframework.beans.TestBean">
				<property name="name">Eve
			</bean>
		</constructor-arg>
	</bean>
	
	<bean id="adam" class="org.springframework.beans.TestBean">
		<property name="name">Adam
	</bean>
	
	<bean id="adamTargetSource" class="org.springframework.aop.target.SingletonTargetSource">
		<constructor-arg>
			<ref local="adam"/>
		</constructor-arg>
	</bean>
	
	<bean id="countingBeforeAdvice"
		class="org.springframework.aop.framework.CountingBeforeAdvice"
	/>
	
	<bean id="doubleTarget"
		class="org.springframework.aop.framework.ProxyFactoryBean"> 
		<property name="proxyInterfaces">org.springframework.beans.ITestBean
		<!-- this is the one used and NOT the one set by targetSource -->
		<property name="interceptorNames">countingBeforeAdvice,adamTargetSource
		
		<property name="targetSource">
	</bean>
	
	<!-- but this is also possible -->
	<bean id="arbitraryTarget"
		class="org.springframework.aop.framework.ProxyFactoryBean"> 
		<property name="proxyInterfaces">org.springframework.beans.ITestBean
		<!-- this is the one used and NOT the one set by targetSource -->
		<property name="interceptorNames">adam
		<property name="targetSource">
	</bean>

		
</beans>		
	
	

Other Spring Framework examples (source code examples)

Here is a short list of links related to this Spring Framework proxyFactoryDoubleTargetSourceTests.xml source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 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.