# binlog4j
**Repository Path**: javanasoda/binlog4j
## Basic Information
- **Project Name**: binlog4j
- **Description**: 基 于 Java 轻 量 级 的 Mysql (Mariadb) Binlog 客 户 端
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: 1.1.0
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 182
- **Created**: 2023-08-22
- **Last Updated**: 2023-08-22
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
Binlog4j
轻量级 Mysql Binlog 客户端, 提供宕机续读, 高可用集群等特性
### 项目特性
- 集群模式, 通过集群部署的方式,保证服务高可用。
- 宕机续读, 避免宕机期间造成数据丢失。
- 数据转换, 基于泛型封装 binlog Event 的序列化数据。
- 兼容 传统项目 与 Spring Boot / Cloud 项目。
- 兼容 Spring Boot 2.x 与 Spring Boot 3.x 版本。
### 下载安装
```xml
com.gitee.Jmysy
binlog4j-core
latest.version
```
或
```text
implementation group: 'com.gitee.Jmysy', name: 'binlog4j-core', version: 'latest.version'
```
### 简单使用
通过 BinlogClient 创建 binlog 客户端, IBinlogEventHandler 用于接受 binlog 事件通知, 该接口允许使用泛型, 数据将遵循驼峰规则进行封装。
```java
public class BootStrap {
public static void main(String[] args) {
BinlogClientConfig clientConfig = new BinlogClientConfig();
clientConfig.setHost("127.0.0.1");
clientConfig.setPort(3306);
clientConfig.setUsername("root");
clientConfig.setPassword("taoren@123");
clientConfig.setServerId(1990);
IBinlogClient binlogClient = new BinlogClient(clientConfig);
binlogClient.registerEventHandler("database", "table", new IBinlogEventHandler() {
@Override
public void onInsert(BinlogEvent event) {
System.out.println("插入数据:{}", event.getData());
}
@Override
public void onUpdate(BinlogEvent event) {
System.out.println("修改数据:{}", event.getData());
}
@Override
public void onDelete(BinlogEvent event) {
System.out.println("删除数据:{}", event.getData());
}
});
binlogClient.connect();
}
}
```
### 高级特性
通过 Persistence 配置为 true 启用宕机续读功能, Binlog4j 会将 binlog 的 filename 与 position 记录到 redis, 所以同时你需要设置 Redis 配置。
```java
public class BootStrap {
public static void main(String[] args) {
RedisConfig redisConfig = new RedisConfig();
redisConfig.setHost("127.0.0.1");
redisConfig.setPort(6379);
redisConfig.setPassword("taoren@123");
BinlogClientConfig clientConfig = new BinlogClientConfig();
clientConfig.setHost("127.0.0.1");
clientConfig.setPort(3306);
clientConfig.setUsername("root");
clientConfig.setPassword("taoren@123");
clientConfig.setServerId(1990); // Client 编号
clientConfig.setRedisConfig(redisConfig); // Redis 配置
clientConfig.setPersistence(true); // 启用持久化 (宕机重启后, 从上次读取的位置开始)
clientConfig.setMode(BinlogClientMode.cluster); // 高可用集群
BinlogClient binlogClient = new BinlogClient(clientConfig);
binlogClient.registerEventHandler("database", "table", new IBinlogEventHandler() {
@Override
public void onInsert(BinlogEvent event) {
System.out.println("插入数据:{}", event.getData());
}
@Override
public void onUpdate(BinlogEvent event) {
System.out.println("修改数据:{}", event.getData());
}
@Override
public void onDelete(BinlogEvent event) {
System.out.println("删除数据:{}", event.getData());
}
});
binlogClient.connect();
}
}
```
### Spring Boot Starter
```agsl
com.gitee.Jmysy
binlog4j-spring-boot-starter
latest.version
```
或
```text
implementation group: 'com.gitee.Jmysy', name: 'binlog4j-spring-boot-starter', version: 'latest.version'
```
首先, 在 application.yml 中填写 BinlogClient 配置
```yaml
spring:
binlog4j:
redis-config:
host: 127.0.0.1
port: 6379
password: taoren@123
client-configs:
master:
username: root
password: taoren@123
host: 127.0.0.1
port: 3306
serverId: 1990
```
### 单表监听
使用 @BinlogSubscriber 注解, 指定 IBinlogEventHandler 需要注册到哪个客户端, 并且指定监听的 database 与 table。
```java
@BinlogSubscriber(clientName = "master", database = "pear-admin", table ="sys_user")
public class UserEventHandler implements IBinlogEventHandler {
@Override
public void onInsert(BinlogEvent event) {
System.out.println("插入数据:" + event.getData());
}
@Override
public void onUpdate(BinlogEvent event) {
System.out.println("修改数据:" + event.getData());
}
@Override
public void onDelete(BinlogEvent event) {
System.out.println("删除数据:" + event.getData());
}
}
```
### 多表监听
database 与 table 使用 Pattern 匹配, 泛型不应该再被使用, data 默认为 Map 类型
```java
@BinlogSubscriber(clientName = "master", database = ".*", table ="sys.*")
public class UserEventHandler implements IBinlogEventHandler {
@Override
public void onInsert(BinlogEvent event) {
System.out.println("数据库:" + event.getDatabase());
System.out.println("数据表:" + event.getTable());
System.out.println("新数据:" + event.getData());
}
@Override
public void onUpdate(BinlogEvent event) {
System.out.println("数据库:" + event.getDatabase());
System.out.println("数据表:" + event.getTable());
System.out.println("原数据:" + event.getOriginalData());
System.out.println("新数据:" + event.getData());
}
@Override
public void onDelete(BinlogEvent event) {
System.out.println("数据库:" + event.getDatabase());
System.out.println("数据表:" + event.getTable());
System.out.println("新数据:" + event.getData());
}
}
```