복붙노트

[SPRING] @EnableAsync와 동일한 스프링 XML

SPRING

@EnableAsync와 동일한 스프링 XML

XML에서 Spring의 Async 구성을 활성화하는 방법이 있습니까? 내가 본 모든 예제는 프로그래밍 방식의 컨텍스트 선언을 사용하고 @EnableAsync

이에 해당하는 XML이 있습니까? 어떤 곳에서는 가 사용되는 것을 보았지만 비동기에 대해서는 언급하지 않았습니다.

나는 봄 4를 사용하고있다.

해결법

  1. ==============================

    1.이것을 사용해 보셨습니까?

    이것을 사용해 보셨습니까?

    <task:annotation-driven /> 
    
  2. ==============================

    2.예, 다음과 같이 사용할 수 있습니다.

    예, 다음과 같이 사용할 수 있습니다.

     <beans>
         <task:annotation-driven executor="myExecutor" exception-handler="exceptionHandler"/>
         <task:executor id="myExecutor" pool-size="7-42" queue-capacity="11"/>
         <bean id="asyncBean" class="com.foo.MyAsyncBean"/>
         <bean id="exceptionHandler" class="com.foo.MyAsyncUncaughtExceptionHandler"/>
     </beans>
    

    Spring 문서에 따르면, 이것은 @EnableAsync를 사용하는 것과 같습니다.

  3. from https://stackoverflow.com/questions/31401640/spring-xml-equivalent-of-enableasync by cc-by-sa and MIT license