import org.springframework.stereotype.Component; import org.springframework.util.DigestUtils; import java.nio.charset.StandardCharsets; import java.util.concurrent.TimeUnit; /** * 使用Redisson分布式锁来防止接口重复调用的AOP切面类 */ @Component @Aspect @Slf4j public class LockMethodAOP { @Autowired p...