com.healthy.common.log.operation.resolver.OperationLoggingKeyResolver Maven / Gradle / Ivy
package com.healthy.common.log.operation.resolver;
import com.healthy.common.log.operation.annotation.OperationLogging;
import org.aspectj.lang.JoinPoint;
/**
* 表达式解析器接口
*
* @author xm.z
*/
public interface OperationLoggingKeyResolver {
/**
* 解析表达式
* @param joinPoint AOP 切面
* @param operationLogging 日志注解
* @return Key
*/
String resolver(JoinPoint joinPoint, OperationLogging operationLogging);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy