提交 a6569a29 编写于 作者: J Juergen Hoeller

moved async aspect to aspectj sub-package

上级 d9d7fb6f
package org.springframework.scheduling;
/*
* Copyright 2002-2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.scheduling.aspectj;
import java.util.concurrent.Callable;
import java.util.concurrent.Executor;
......@@ -11,22 +27,31 @@ import org.springframework.core.task.support.TaskExecutorAdapter;
/**
* Abstract aspect that routes selected methods asynchronously.
* <p>
* This aspect, by default, uses {@link SimpleAsyncTaskExecutor} to route method
* execution. However, you may inject it with any implementation of
*
* <p>This aspect, by default, uses {@link SimpleAsyncTaskExecutor} to route
* method execution. However, you may inject it with any implementation of
* {@link Executor} to override the default.
*
* @author Ramnivas Laddad
* @since 3.0.5
*/
public abstract aspect AbstractAsynchronousExecutionAspect {
private AsyncTaskExecutor asyncExecutor;
public AbstractAsynchronousExecutionAspect() {
// Set default executor, which may be replaced by calling setExecutor(Executor)
// Set default executor, which may be replaced by calling setExecutor.
setExecutor(new SimpleAsyncTaskExecutor());
}
public abstract pointcut asyncMethod();
public void setExecutor(Executor executor) {
if (executor instanceof AsyncTaskExecutor) {
this.asyncExecutor = (AsyncTaskExecutor) executor;
}
else {
this.asyncExecutor = new TaskExecutorAdapter(asyncExecutor);
}
}
Object around() : asyncMethod() {
Callable<Object> callable = new Callable<Object>() {
......@@ -37,22 +62,15 @@ public abstract aspect AbstractAsynchronousExecutionAspect {
}
return null;
}};
Future<?> result = asyncExecutor.submit(callable);
if (Future.class.isAssignableFrom(((MethodSignature)thisJoinPointStaticPart.getSignature()).getReturnType())) {
if (Future.class.isAssignableFrom(((MethodSignature) thisJoinPointStaticPart.getSignature()).getReturnType())) {
return result;
} else {
}
else {
return null;
}
}
public void setExecutor(Executor executor) {
if (executor instanceof AsyncTaskExecutor) {
this.asyncExecutor = (AsyncTaskExecutor) executor;
} else {
this.asyncExecutor = new TaskExecutorAdapter(asyncExecutor);
}
}
public abstract pointcut asyncMethod();
}
package org.springframework.scheduling;
/*
* Copyright 2002-2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.scheduling.aspectj;
import java.util.concurrent.Future;
import org.springframework.scheduling.annotation.Async;
/**
* Aspect to route methods based on the {@link Async} annotation.
* <p>
* This aspect routes methods marked with the {@link Async} annotation
*
* <p>This aspect routes methods marked with the {@link Async} annotation
* as well as methods in classes marked with the same. Any method expected
* to be routed asynchronously must return either void, {@link Future},
* or a subtype of {@link Future}. This aspect, therefore, will produce
......@@ -15,11 +31,13 @@ import org.springframework.scheduling.annotation.Async;
* violates this constraint, it produces only a warning.
*
* @author Ramnivas Laddad
*
* @since 3.0.5
*/
public aspect AnnotationDrivenAsynchronousExecutionAspect extends AbstractAsynchronousExecutionAspect {
private pointcut asyncMarkedMethod()
: execution(@Async (void || Future+) *(..));
private pointcut asyncTypeMarkedMethod()
: execution((void || Future+) (@Async *).*(..));
......@@ -27,9 +45,10 @@ public aspect AnnotationDrivenAsynchronousExecutionAspect extends AbstractAsynch
declare error:
execution(@Async !(void||Future) *(..)):
"Only method that return void or Future may have @Async annotation";
"Only methods that return void or Future may have an @Async annotation";
declare warning:
execution(!(void||Future) (@Async *).*(..)):
"Method in class marked with @Async that do not return void or Future will be routed synchronously";
"Methods in a class marked with @Async that do not return void or Future will be routed synchronously";
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册