[SPRING] @EnableAsync와 동일한 스프링 XML
SPRING@EnableAsync와 동일한 스프링 XML
XML에서 Spring의 Async 구성을 활성화하는 방법이 있습니까? 내가 본 모든 예제는 프로그래밍 방식의 컨텍스트 선언을 사용하고 @EnableAsync
이에 해당하는 XML이 있습니까? 어떤 곳에서는
나는 봄 4를 사용하고있다.
해결법
-
==============================
1.이것을 사용해 보셨습니까?
이것을 사용해 보셨습니까?
<task:annotation-driven />
-
==============================
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를 사용하는 것과 같습니다.
from https://stackoverflow.com/questions/31401640/spring-xml-equivalent-of-enableasync by cc-by-sa and MIT license
'SPRING' 카테고리의 다른 글
[SPRING] Spring @QuerydslPredicate Questions (0) | 2019.04.17 |
---|---|
[SPRING] 스프링 부트 애플리케이션에서 스프링 JMS 자동 설정 비활성화하기 (0) | 2019.04.17 |
[SPRING] Spring에서 값을 가진리스트를 지정하는 가장 쉬운 방법은 무엇입니까? (0) | 2019.04.17 |
[SPRING] Grails 서비스에서 트랜잭션 롤백 (0) | 2019.04.16 |
[SPRING] Java Spring Tomcat에서 응답이없는 웹 소켓을 어떻게 빨리 닫을 수 있습니까? (0) | 2019.04.16 |