2019独角兽企业重金招聘Python工程师标准>>>
如何把JAVA方法变成异步执行的方法?
在苹果手机上移动端页面发起ajax请求到服务端,服务端对数据库增删改查之后,需要发起http请求到消息中心这样一个项目,给它加消息。
但是http请求时间比较长,导致页面ajax请求超时了(苹果手机自带机制,超过一定时间就算超时,即使你设置了AJAX超时时间也没用)。
如何把加消息这一步,弄成异步执行的呢?答案就在下面:
使用spring框架的注解,@Async 加在需要异步执行的方法上,但是需要在spring的配置文件中增加配置。
1.配置文件引入必要配置
xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:task="http://www.springframework.org/schema/task"
xmlns:tx="http://www.springframework.org/schema/tx"
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/tx
http://www.springframework.org/schema/tx/spring-tx-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/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-4.0.xsd">
红色标记的是异步执行方法需要引用的内容,蓝色标记的是面向切面编程引用的内容(没有使用到AOP的内容就不要引入)
2.开启异步执行的注解
3.在需要设置为异步执行的方法上加注解
import org.apache.log4j.Logger;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.scheduling.annotation.Async;
public class MessageAspect {
public static Logger log = Logger.getLogger(MessageAspect.class);
@Async
public Object aroundMethod(ProceedingJoinPoint pjd, DeleteMessage deleteMessage) throws Throwable {
Object result = null;
Object[] param = pjd.getArgs();
MessageClientFactory.instance();
MessageClient messageClient = MessageClientFactory.getMessageClient(deleteMessage.operation());
messageClient.sendMessage(deleteMessage.operation(), param, result);
result = pjd.proceed();
return result;
}
/**
* 方法正常结束后执行的代码 返回通知是可以访问到方法的返回值的
*/
@Async
public void afterReturning(JoinPoint joinPoint,Message message,Object result) {
MESSAGEOPERATION messageoperation = message.operation();
MessageClientFactory.instance();
MessageClient messageClient = MessageClientFactory.getMessageClient(messageoperation);
Object[] param = joinPoint.getArgs();
messageClient.sendMessage(messageoperation, param, result);
}
}