Files
spring-lock/README.md
2020-09-03 09:41:55 +08:00

37 lines
850 B
Markdown

# 项目简介
为 java 设计的锁。
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.houbb/lock/badge.svg)](http://mvnrepository.com/artifact/com.github.houbb/lock)
[![Build Status](https://www.travis-ci.org/houbb/lock.svg?branch=master)](https://www.travis-ci.org/houbb/lock?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/houbb/lock/badge.svg?branch=master)](https://coveralls.io/github/houbb/lock?branch=master)
## 目的
- 基于 redis 的分布式锁
- 基于 oracle 的分布式锁
- 基于 mysql 的分布式锁
# 变更日志
> [变更日志](doc/CHANGELOG.md)
# 快速开始
## 需要
jdk1.7+
maven 3.x+
## maven 引入
```xml
<dependency>
<groupId>com.github.houbb</groupId>
<artifactId>lock</artifactId>
<version>${最新版本}</version>
</dependency>
```