У меня есть две task:executor
аннотации:
<task:executor id="asyncExecutor"
pool-size="5-100"
keep-alive="120"
rejection-policy="CALLER_RUNS"
queue-capacity="1000"/>
<task:executor id="otherExecutor"
pool-size="5-20"
keep-alive="120"
rejection-policy="CALLER_RUNS"
queue-capacity="100"/>
<bean id="asyncExceptionHandler" class="com.xx.xx.xx.xx.common.AsyncExceptionHandler"/>
<task:annotation-driven executor="asyncExecutor" exception-handler="asyncExceptionHandler"/>
Я хочу, чтобы два task:executors
использовали один и тот же exception-handler
.
Как я могу это сделать?