Fixed configuration of AnnotationAsyncExecutionAspect (was incorrectly under the same name as that for transaction management aspect)
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@3773 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
parent
417d74abd2
commit
0856315864
|
|
@ -34,6 +34,7 @@ import org.springframework.util.StringUtils;
|
||||||
*
|
*
|
||||||
* @author Mark Fisher
|
* @author Mark Fisher
|
||||||
* @author Juergen Hoeller
|
* @author Juergen Hoeller
|
||||||
|
* @author Ramnivas Laddad
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
*/
|
*/
|
||||||
public class AnnotationDrivenBeanDefinitionParser implements BeanDefinitionParser {
|
public class AnnotationDrivenBeanDefinitionParser implements BeanDefinitionParser {
|
||||||
|
|
@ -48,7 +49,7 @@ public class AnnotationDrivenBeanDefinitionParser implements BeanDefinitionParse
|
||||||
* The bean name of the internally managed transaction aspect (mode="aspectj").
|
* The bean name of the internally managed transaction aspect (mode="aspectj").
|
||||||
*/
|
*/
|
||||||
public static final String ASYNC_EXECUTION_ASPECT_BEAN_NAME =
|
public static final String ASYNC_EXECUTION_ASPECT_BEAN_NAME =
|
||||||
"org.springframework.transaction.config.internalTransactionAspect";
|
"org.springframework.scheduling.config.internalAsyncExecutionAspect";
|
||||||
|
|
||||||
private static final String ASYNC_EXECUTION_ASPECT_CLASS_NAME =
|
private static final String ASYNC_EXECUTION_ASPECT_CLASS_NAME =
|
||||||
"org.springframework.scheduling.aspectj.AnnotationAsyncExecutionAspect";
|
"org.springframework.scheduling.aspectj.AnnotationAsyncExecutionAspect";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue