【修改】 名称替换

This commit is contained in:
DESKTOP-932OMT8\REN
2025-05-21 17:28:26 +08:00
parent 3bd8a424ec
commit b5f18ba897
1212 changed files with 1262 additions and 1270 deletions

View File

@@ -14,7 +14,7 @@ import java.util.concurrent.TimeUnit;
/**
* 幂等注解
*
* @author 芋道源码
* @author 朋辰
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)

View File

@@ -18,7 +18,7 @@ import java.util.Map;
/**
* 拦截声明了 {@link Idempotent} 注解的方法,实现幂等操作
*
* @author 芋道源码
* @author 朋辰
*/
@Aspect
@Slf4j

View File

@@ -6,7 +6,7 @@ import org.aspectj.lang.JoinPoint;
/**
* 幂等 Key 解析器接口
*
* @author 芋道源码
* @author 朋辰
*/
public interface IdempotentKeyResolver {

View File

@@ -11,7 +11,7 @@ import org.aspectj.lang.JoinPoint;
*
* 为了避免 Key 过长,使用 MD5 进行“压缩”
*
* @author 芋道源码
* @author 朋辰
*/
public class DefaultIdempotentKeyResolver implements IdempotentKeyResolver {

View File

@@ -17,7 +17,7 @@ import java.lang.reflect.Method;
/**
* 基于 Spring EL 表达式,
*
* @author 芋道源码
* @author 朋辰
*/
public class ExpressionIdempotentKeyResolver implements IdempotentKeyResolver {

View File

@@ -12,7 +12,7 @@ import org.aspectj.lang.JoinPoint;
*
* 为了避免 Key 过长,使用 MD5 进行“压缩”
*
* @author 芋道源码
* @author 朋辰
*/
public class UserIdempotentKeyResolver implements IdempotentKeyResolver {

View File

@@ -8,7 +8,7 @@ import java.util.concurrent.TimeUnit;
/**
* 幂等 Redis DAO
*
* @author 芋道源码
* @author 朋辰
*/
@AllArgsConstructor
public class IdempotentRedisDAO {

View File

@@ -3,7 +3,7 @@ package pc.exam.pp.framework.lock4j.core;
/**
* Lock4j Redis Key 枚举类
*
* @author 芋道源码
* @author 朋辰
*/
public interface Lock4jRedisKeyConstants {

View File

@@ -17,7 +17,7 @@ import java.util.concurrent.TimeUnit;
/**
* 限流注解
*
* @author 芋道源码
* @author 朋辰
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)

View File

@@ -19,7 +19,7 @@ import java.util.Map;
/**
* 拦截声明了 {@link RateLimiter} 注解的方法,实现限流操作
*
* @author 芋道源码
* @author 朋辰
*/
@Aspect
@Slf4j

View File

@@ -6,7 +6,7 @@ import org.aspectj.lang.JoinPoint;
/**
* 限流 Key 解析器接口
*
* @author 芋道源码
* @author 朋辰
*/
public interface RateLimiterKeyResolver {

View File

@@ -12,7 +12,7 @@ import org.aspectj.lang.JoinPoint;
*
* 为了避免 Key 过长,使用 MD5 进行“压缩”
*
* @author 芋道源码
* @author 朋辰
*/
public class ClientIpRateLimiterKeyResolver implements RateLimiterKeyResolver {

View File

@@ -11,7 +11,7 @@ import org.aspectj.lang.JoinPoint;
*
* 为了避免 Key 过长,使用 MD5 进行“压缩”
*
* @author 芋道源码
* @author 朋辰
*/
public class DefaultRateLimiterKeyResolver implements RateLimiterKeyResolver {

View File

@@ -17,7 +17,7 @@ import java.lang.reflect.Method;
/**
* 基于 Spring EL 表达式的 {@link RateLimiterKeyResolver} 实现类
*
* @author 芋道源码
* @author 朋辰
*/
public class ExpressionRateLimiterKeyResolver implements RateLimiterKeyResolver {

View File

@@ -12,7 +12,7 @@ import org.aspectj.lang.JoinPoint;
*
* 为了避免 Key 过长,使用 MD5 进行“压缩”
*
* @author 芋道源码
* @author 朋辰
*/
public class ServerNodeRateLimiterKeyResolver implements RateLimiterKeyResolver {

View File

@@ -12,7 +12,7 @@ import org.aspectj.lang.JoinPoint;
*
* 为了避免 Key 过长,使用 MD5 进行“压缩”
*
* @author 芋道源码
* @author 朋辰
*/
public class UserRateLimiterKeyResolver implements RateLimiterKeyResolver {

View File

@@ -9,7 +9,7 @@ import java.util.concurrent.TimeUnit;
/**
* 限流 Redis DAO
*
* @author 芋道源码
* @author 朋辰
*/
@AllArgsConstructor
public class RateLimiterRedisDAO {