/redis-lock-spring-boot-starter

redis distributed lock

Primary LanguageJavaApache License 2.0Apache-2.0

redis-lock-spring-boot-starter

介绍

redis实现分布式锁

软件架构

首先引用本插件

<dependency>
  <groupId>icu.funkye</groupId>
  <artifactId>redis-lock-spring-boot-starter</artifactId>
  <version>0.2</version>
</dependency>

项目需引入如下依赖方可使用:

	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-autoconfigure</artifactId>
			<version>2.1.8.RELEASE</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>redis.clients</groupId>
			<artifactId>jedis</artifactId>
			<version>2.9.1</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-aop</artifactId>
			<version>2.1.8.RELEASE</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-data-redis</artifactId>
			<version>2.1.8.RELEASE</version>
			<scope>provided</scope>
		</dependency>
	</dependencies>

使用说明

  1. @RedisLock(key = "默认类路径+方法名)",timeoutMills=超时时间默认60秒,可自定义,retry=默认50毫秒重试获取锁,lockTimeout=锁过期时间,可自定义,默认60)

  2. 将以上注解加入需要使用分布式锁的地方

  3. redis.lock.server.host=127.0.0.1 #默认
    redis.lock.server.port=6379 #默认
    redis.lock.server.password= #默认""
    redis.lock.server.database= #默认0