我使用的是Spring 3.2.2.RELEASE版本。 @Async anotation未按预期工作。
的applicationContext.xml
<?xml version="1.0" encoding="windows-1252"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- Enable AspectJ style of Spring AOP -->
<aop:aspectj-autoproxy proxy-target-class="true"/>
<context:component-scan base-package="com.pratik" />
<tx:annotation-driven />
import.java
public String async() {
final String asssetImportId = ObjectId.get().toHexString();
process.asyncTest();
logger.info("Ongoing");
return asssetImportId;
}
process.java
@Async
public void asyncTest() {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
logger.info("After Sleep");
}
睡眠后日志应该打印到最后但是在正在进行之前打印
答案 0 :(得分:0)
Thread.sleep(000)对我来说似乎是一个错字。如果apo允许你进行0睡眠,这将是打印在你预期之前发生的一个很好的理由(也许并不总是如此,因为你在谈论Async任何“打印顺序”可能会发生)
编辑: tx:注释驱动用于事务支持。添加上下文:annotation-config
编辑2:更正:使用“任务:注释驱动(不要与tx命名空间混淆)