We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 611fbb8 commit 3d03612Copy full SHA for 3d03612
README.md
@@ -6,6 +6,24 @@ version-db 是一个轻量级持久层db框架,除slf4j-api外不依赖任何
6
框架支持sql能实现的任意查询或更新,如关联查询、子查询、关联更新、insert select、不同数据库分页扩展等。
7
8
框架支持自定义拦截器,内置逻辑删除拦截器,可通过SPI或调用InterceptorUtils.addInterceptor方法加入扩展。
9
+## maven 依赖
10
+第一步:添加jitpack仓库
11
+```xml
12
+<repositories>
13
+ <repository>
14
+ <id>jitpack.io</id>
15
+ <url>https://jitpack.io</url>
16
+ </repository>
17
+</repositories>
18
+```
19
+第二步:依赖veasion-db
20
21
+<dependency>
22
+ <groupId>com.github.veasion</groupId>
23
+ <artifactId>veasion-db</artifactId>
24
+ <version>v1.0.0</version>
25
+</dependency>
26
27
## 使用方式介绍
28
这里以 student 表举例
29
```java
0 commit comments