AbstractAutoProxyCreator and AbstractAdvisingBeanPostProcessor consistently not considering configuration callbacks and internal language interfaces as reasonable proxy interfaces

Issue: SPR-11715
This commit is contained in:
Juergen Hoeller
2014-04-29 19:07:29 +02:00
parent e510f6393a
commit 1b2014a52d
4 changed files with 165 additions and 126 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2013 the original author or authors.
* Copyright 2002-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -16,6 +16,7 @@
package org.springframework.scheduling.annotation;
import java.io.Serializable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.util.HashMap;
@@ -28,6 +29,7 @@ import org.junit.Test;
import org.springframework.aop.framework.ProxyFactory;
import org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator;
import org.springframework.aop.support.DefaultIntroductionAdvisor;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.FactoryBean;
import org.springframework.beans.factory.support.RootBeanDefinition;
import org.springframework.context.ApplicationEvent;
@@ -397,7 +399,7 @@ public class AsyncExecutionTests {
@Async
public static class AsyncClassBean {
public static class AsyncClassBean implements Serializable, DisposableBean {
public void doSomething(int i) {
assertTrue(!Thread.currentThread().getName().equals(originalThreadName));
@@ -407,6 +409,10 @@ public class AsyncExecutionTests {
assertTrue(!Thread.currentThread().getName().equals(originalThreadName));
return new AsyncResult<String>(Integer.toString(i));
}
@Override
public void destroy() {
}
}