mirror of
https://gitee.com/dromara/RuoYi-Cloud-Plus.git
synced 2025-09-06 12:28:10 +00:00
update 更新动态日志开关与订阅服务配置
This commit is contained in:
@@ -1,32 +1,47 @@
|
||||
package com.ruoyi.common.dubbo.filter;
|
||||
|
||||
import com.ruoyi.common.core.utils.JsonUtils;
|
||||
import com.ruoyi.common.core.utils.SpringUtils;
|
||||
import com.ruoyi.common.dubbo.properties.DubboCustomProperties;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.dubbo.common.constants.CommonConstants;
|
||||
import org.apache.dubbo.common.extension.Activate;
|
||||
import org.apache.dubbo.rpc.*;
|
||||
import org.apache.dubbo.rpc.service.GenericService;
|
||||
|
||||
/**
|
||||
* dubbo日志过滤器
|
||||
*
|
||||
* @author Lion Li
|
||||
*/
|
||||
@Slf4j
|
||||
@Activate(group = { CommonConstants.PROVIDER, CommonConstants.CONSUMER })
|
||||
public class DubboRequestFilter implements Filter {
|
||||
|
||||
@Override
|
||||
public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException {
|
||||
//打印入参日志
|
||||
log.info("DUBBO - 服务入参: InterfaceName=[{}],MethodName=[{}],Parameter=[{}]", invocation.getInvoker().getInterface().getName(), invocation.getMethodName(), invocation.getArguments());
|
||||
//开始时间
|
||||
DubboCustomProperties properties = SpringUtils.getBean(DubboCustomProperties.class);
|
||||
if (!properties.getRequestLog()) {
|
||||
// 未开启则跳过日志逻辑
|
||||
return invoker.invoke(invocation);
|
||||
}
|
||||
String client = CommonConstants.PROVIDER;
|
||||
if (RpcContext.getContext().isConsumerSide()) {
|
||||
client = CommonConstants.CONSUMER;
|
||||
}
|
||||
String baselog = "Client[" + client + "],InterfaceName=[" + invocation.getInvoker().getInterface().getName() + "],MethodName=[" + invocation.getMethodName() + "]";
|
||||
log.info("DUBBO - 服务调用: {},Parameter=[{}]", baselog, invocation.getArguments());
|
||||
|
||||
long startTime = System.currentTimeMillis();
|
||||
//执行接口调用逻辑
|
||||
// 执行接口调用逻辑
|
||||
Result result = invoker.invoke(invocation);
|
||||
//调用耗时
|
||||
// 调用耗时
|
||||
long elapsed = System.currentTimeMillis() - startTime;
|
||||
//如果发生异常 则打印异常日志
|
||||
// 如果发生异常 则打印异常日志
|
||||
if (result.hasException() && invoker.getInterface().equals(GenericService.class)) {
|
||||
log.error("DUBBO - 执行异常: ", result.getException());
|
||||
log.error("DUBBO - 服务异常: {},Exception=[{}]", baselog, result.getException());
|
||||
} else {
|
||||
//打印响应日志
|
||||
log.info("DUBBO - 服务响应: InterfaceName=[{}],MethodName=[{}],SpendTime=[{}ms],Response=[{}]", invocation.getInvoker().getInterface().getName(), invocation.getMethodName(), elapsed, JsonUtils.toJsonString(new Object[]{result.getValue()}));
|
||||
log.info("DUBBO - 服务响应: {},SpendTime=[{}ms],Response=[{}]", baselog, elapsed, JsonUtils.toJsonString(new Object[]{result.getValue()}));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
@@ -0,0 +1,20 @@
|
||||
package com.ruoyi.common.dubbo.properties;
|
||||
|
||||
import lombok.Data;
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
import org.springframework.cloud.context.config.annotation.RefreshScope;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* 自定义配置
|
||||
*
|
||||
* @author Lion Li
|
||||
*/
|
||||
@Data
|
||||
@RefreshScope
|
||||
@Component
|
||||
@ConfigurationProperties(prefix = "dubbo.custom")
|
||||
public class DubboCustomProperties {
|
||||
|
||||
private Boolean requestLog;
|
||||
}
|
@@ -1 +1,2 @@
|
||||
org.springframework.boot.autoconfigure.EnableAutoConfiguration=
|
||||
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
|
||||
com.ruoyi.common.dubbo.properties.DubboCustomProperties
|
Reference in New Issue
Block a user