如何与spring异步运行方法?

时间:2012-03-21 17:05:26

标签: java spring asynchronous

以下代码假设异步工作,但它等待Async部分完成然后继续。如何使blah()方法异步运行?

spring.xml

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

    <!-- Activates @Scheduled and @Async annotations for scheduling -->  
    <task:annotation-driven />

    <bean id="test"
        class="com.spring.test.Test">
</beans>

Test.java

@Path("/test")
public class Test
{
  @GET
  @Path("/test")
  @Produces("text/plain")
  public String tester()
  {
    return "Running...";
  }

  @GET
  @Path("/triggerNew")
  @Produces("text/plain")
  public String triggerNew()
  {
    System.out.println("BEFORE " + new Date() + " BEFORE");

    new Process().blah();

    System.out.println("AFTER " + new Date() + " AFTER");
    return "TRIGGERED";
  }
}

Process.java

  @Component
    public class Process
    {
      @Async
      public void blah()
      {
        try
        {
          Thread.currentThread().sleep(5000);
        }
        catch (InterruptedException e)
        {
          e.printStackTrace(); 
        }
        System.out.println("NEW THREAD " + new Date() + " NEW THREAD");
      }
    }

2 个答案:

答案 0 :(得分:7)

@Async仅在注释Spring管理的bean而不是任意类时才有效。您需要将Process定义为Spring bean,然后将其注入控制器类,例如

<bean id="test" class="com.spring.test.Test">
   <property name="process">
      <bean class="com.spring.test.Process"/>
   </property>
</bean>

public class Test {
   private Process process;

   public void setProcess(Process process) {
      this.process = process;
   }

   ...

   public String triggerNew() {  
      process.blah();
   }
}

答案 1 :(得分:3)

或者,您可以使用TaskExecutor手动执行任务。 只需在上下文中定义执行者:

<bean id="taskExecutor" class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor"/>

你可以执行任务:

taskExecutor.execute(new Process ());

但在这种情况下,您的Process类必须实现Runnable接口