Fixed configuration of AnnotationAsyncExecutionAspect (was incorrectly under the same name as that for transaction management aspect)
This commit is contained in:
parent
bfd54f4f35
commit
92298469bf
|
|
@ -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