gpt4 book ai didi

java - Spring @Async 不工作

转载 作者:IT老高 更新时间:2023-10-28 13:04:06 24 4
gpt4 key购买 nike

@Async @Service 中的方法- 注解的类没有被异步调用——它阻塞了线程。

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

我在 AsyncExecutionInterceptor 中设置了断点他们永远不会受到打击。我已经调试到 AsyncAnnotationBeanPostProcessor并且可以看到正在应用的建议。

服务被定义为一个接口(interface)(带有注释的方法 @Async 用于很好的衡量标准),实现的方法注释为 @Async也。两者均未标记 @Transactional .

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

-=更新=-

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

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>

app-services.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"/>
...

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

最佳答案

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

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

}

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

关于java - Spring @Async 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6610563/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com