@Target(value=TYPE) @Retention(value=RUNTIME) @EnableAspectJAutoProxy(proxyTargetClass=false) @Import(value=RetryConfiguration.class) @Documented public @interface EnableRetry
@Retryable
annotations in Spring beans. If this is
declared on any @Configuration
in the context then beans that have
retryable methods will be proxied and the retry handled according to the metadata in
the annotations.Modifier and Type | Optional Element and Description |
---|---|
boolean |
proxyTargetClass
Indicate whether subclass-based (CGLIB) proxies are to be created as opposed
to standard Java interface-based proxies.
|
Copyright © 2014 SpringSource. All rights reserved.