|
Spring Framework example source code file (throwsAdvice.xml)
The Spring Framework throwsAdvice.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 throws advice. $Id: throwsAdvice.xml,v 1.6 2006/08/20 19:08:40 jhoeller Exp $ --> <beans> <!-- Simple target --> <bean id="target" class="org.springframework.aop.framework.adapter.ThrowsAdviceInterceptorTests$Echo"> </bean> <bean id="nopInterceptor" class="org.springframework.aop.interceptor.NopInterceptor"> </bean> <bean id="countingBeforeAdvice" class="org.springframework.aop.framework.CountingBeforeAdvice" /> <bean id="throwsAdvice" class="org.springframework.aop.framework.adapter.ThrowsAdviceInterceptorTests$MyThrowsHandler"> </bean> <bean id="throwsAdvised" class="org.springframework.aop.framework.ProxyFactoryBean" > <property name="interceptorNames"> <value>countingBeforeAdvice,nopInterceptor,throwsAdvice,target </property> </bean> </beans> Other Spring Framework examples (source code examples)Here is a short list of links related to this Spring Framework throwsAdvice.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.