Commit 87442a5c by xuxueli

执行器动态代理对象,拦截非业务方法的执行

parent ee1e32dd
## 《分布式任务调度平台XXL-JOB》 ## 《分布式任务调度平台XXL-JOB》
...@@ -1024,6 +1024,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段 ...@@ -1024,6 +1024,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
- 3、修复任务监控线程被耗时任务阻塞的问题; - 3、修复任务监控线程被耗时任务阻塞的问题;
- 4、修复任务监控线程无法监控任务触发和执行状态均未0的问题; - 4、修复任务监控线程无法监控任务触发和执行状态均未0的问题;
- 5、调度中心项目日志配置改为xml文件格式; - 5、调度中心项目日志配置改为xml文件格式;
- 6、执行器动态代理对象,拦截非业务方法的执行;
### TODO LIST ### TODO LIST
- 1、任务权限管理:执行器为粒度分配权限,核心操作校验权限; - 1、任务权限管理:执行器为粒度分配权限,核心操作校验权限;
......
...@@ -36,6 +36,12 @@ public class NetComClientProxy implements FactoryBean<Object> { ...@@ -36,6 +36,12 @@ public class NetComClientProxy implements FactoryBean<Object> {
new InvocationHandler() { new InvocationHandler() {
@Override @Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
// filter method like "Object.toString()"
if (Object.class.getName().equals(method.getDeclaringClass().getName())) {
logger.error(">>>>>>>>>>> xxl-rpc proxy class-method not support [{}.{}]", method.getDeclaringClass().getName(), method.getName());
throw new RuntimeException("xxl-rpc proxy class-method not support");
}
// request // request
RpcRequest request = new RpcRequest(); RpcRequest request = new RpcRequest();
...@@ -46,7 +52,7 @@ public class NetComClientProxy implements FactoryBean<Object> { ...@@ -46,7 +52,7 @@ public class NetComClientProxy implements FactoryBean<Object> {
request.setMethodName(method.getName()); request.setMethodName(method.getName());
request.setParameterTypes(method.getParameterTypes()); request.setParameterTypes(method.getParameterTypes());
request.setParameters(args); request.setParameters(args);
// send // send
RpcResponse response = client.send(request); RpcResponse response = client.send(request);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment