OpenJDK 8 build 99: annotation discovery on bridge methods

This commit is contained in:
Juergen Hoeller
2013-07-24 13:36:59 +02:00
parent f7b7649d79
commit 2d1b44202b
5 changed files with 16 additions and 45 deletions

View File

@@ -49,13 +49,6 @@ public abstract class AbstractAsyncConfiguration implements ImportAware {
importMetadata.getClassName());
}
/**
* The component that will apply async execution advice to beans annotated with
* the async annotation. Subclasses will provide either a BeanPostProcessor in
* the case of proxy-based advice, or an AspectJ aspect if weaving is preferred.
*/
public abstract Object asyncAdvisor();
/**
* Collect any {@link AsyncConfigurer} beans through autowiring.
*/

View File

@@ -38,7 +38,6 @@ import org.springframework.util.Assert;
@Configuration
public class ProxyAsyncConfiguration extends AbstractAsyncConfiguration {
@Override
@Bean(name=AnnotationConfigUtils.ASYNC_ANNOTATION_PROCESSOR_BEAN_NAME)
@Role(BeanDefinition.ROLE_INFRASTRUCTURE)
public AsyncAnnotationBeanPostProcessor asyncAdvisor() {