37 lines
850 B
Markdown
37 lines
850 B
Markdown
# 项目简介
|
|
|
|
为 java 设计的锁。
|
|
|
|
[](http://mvnrepository.com/artifact/com.github.houbb/lock)
|
|
[](https://www.travis-ci.org/houbb/lock?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>
|
|
``` |