提交 | 用户 | age
|
de8c2b
|
1 |
package com.duxinglangzi.canal.starter.annotation;
|
D |
2 |
|
|
3 |
|
|
4 |
import com.alibaba.otter.canal.protocol.CanalEntry;
|
|
5 |
|
|
6 |
import java.lang.annotation.ElementType;
|
|
7 |
import java.lang.annotation.Retention;
|
|
8 |
import java.lang.annotation.RetentionPolicy;
|
|
9 |
import java.lang.annotation.Target;
|
|
10 |
|
|
11 |
|
|
12 |
/**
|
|
13 |
* @author wuqiong 2022/4/11
|
|
14 |
*/
|
|
15 |
@Target({ElementType.METHOD, ElementType.ANNOTATION_TYPE})
|
|
16 |
@Retention(RetentionPolicy.RUNTIME)
|
|
17 |
public @interface CanalListener {
|
|
18 |
|
|
19 |
|
|
20 |
/**
|
|
21 |
* 如果未进行配置,则使用配置文件里全部 destination
|
|
22 |
*/
|
|
23 |
String destination() default "";
|
|
24 |
|
|
25 |
/**
|
|
26 |
* 数据库名
|
|
27 |
*/
|
|
28 |
String database() default "";
|
|
29 |
|
|
30 |
/**
|
|
31 |
* 数据表名
|
|
32 |
*/
|
|
33 |
String[] table() default "";
|
|
34 |
|
|
35 |
/**
|
|
36 |
* 数据变动类型,此处请注意,默认不包含 DDL
|
|
37 |
*/
|
|
38 |
CanalEntry.EventType[] eventType();
|
|
39 |
|
|
40 |
|
|
41 |
}
|