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