春季@Async不工作

2022-08-31 20:07:53

-annoted 类中的方法不是异步调用的 - 它阻塞了线程。@Async@Service

我已经在我的配置中,并且对该方法的调用来自类外部,因此应该会命中代理。当我单步执行代码时,代理确实被击中了,但它似乎没有接近与在任务执行器中运行相关的任何类。<task: annotation-driven />

我已经把断点放进去了,它们永远不会被击中。我已经调试到并可以看到建议被应用。AsyncExecutionInterceptorAsyncAnnotationBeanPostProcessor

该服务被定义为一个接口(为了便于衡量,该方法在那里进行了注释),并且还注释了实现的方法。两者都没有标记。@Async@Async@Transactional

任何想法可能出了什么问题?

-=更新=-

奇怪的是,只有当我的XML元素在我的app-servlet.xml文件中,而不是在我的app-services.xml文件中,并且如果我从那里对服务进行组件扫描时,它有效。通常,我有一个XML文件,其中只有控制器(并相应地限制组件扫描),另一个包含服务(再次限制组件扫描,以便它不会重新扫描加载到另一个文件中的控制器)。task

app-servlet.xml

<beans xmlns="http://www.springframework.org/schema/beans" 
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:jee="http://www.springframework.org/schema/jee" 
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:webflow="http://www.springframework.org/schema/webflow-config" 
xmlns:task="http://www.springframework.org/schema/task"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    http://www.springframework.org/schema/task
    http://www.springframework.org/schema/task/spring-task-3.0.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
    http://www.springframework.org/schema/jee 
    http://www.springframework.org/schema/jee/spring-jee-3.0.xsd"
>
<task:annotation-driven executor="executor" />
<task:executor id="executor" pool-size="7"/>

<!-- Enable controller annotations -->
<context:component-scan base-package="com.package.store">
    <!-- <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" /> -->
</context:component-scan>

<tx:annotation-driven/>
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory"/>
</bean>

<mvc:annotation-driven conversion-service="conversionService" />

<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix" value="/WEB-INF/jsp/" />
    <property name="suffix" value=".jsp" />
</bean>

应用服务.xml(在此处指定时不起作用)

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" 
xmlns:context="http://www.springframework.org/schema/context" xmlns:task="http://www.springframework.org/schema/task"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/task
        http://www.springframework.org/schema/task/spring-task-3.0.xsd">

    <!-- Set up Spring to scan through various packages to find annotated classes -->
    <context:component-scan base-package="com.package.store">
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" />
    </context:component-scan>

    <task:annotation-driven executor="han" />
    <task:executor id="han" pool-size="6"/>
    ...

我是否在我的配置中遗漏了一些明显的东西,或者配置元素之间是否存在一些微妙的相互作用?


答案 1

对我来说,解决方案是添加我的带注释的类:@EnableAsync@Configuration

@Configuration
@ComponentScan("bla.package")
@EnableAsync
public class BlaConfiguration {

}

现在,包中具有带注释方法的类实际上可以异步调用它们。bla.package@Async


答案 2

Ryan Stewart的这个出色答案的帮助下,我能够弄清楚这一点(至少对于我的具体问题)。

简而言之,由 (一般来自 applicationContext.xml) 加载的上下文的父级 (一般来自 )。如果 Bean 在两个上下文中都声明了方法/组件扫描,则子上下文 () 中的版本将覆盖父上下文中的版本 ()。我通过在 -- 中从组件扫描中排除该组件来验证这一点 - 它现在按预期工作。ContextLoaderListenerDispatcherServlet*-servlet.xml@AsyncDispatcherServletContextLoaderListener*-servlet.xml


推荐