renxue
2022-10-24 0b055a3f554da3a934e79e88c4781705cbab5a21
src/main/java/com/hz/canal/starter/annotation/CanalDeleteListener.java
File was renamed from src/main/java/com/duxinglangzi/canal/starter/annotation/CanalDeleteListener.java
@@ -1,29 +1,29 @@
package com.duxinglangzi.canal.starter.annotation;
import com.alibaba.otter.canal.protocol.CanalEntry;
import org.springframework.core.annotation.AliasFor;
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)
@Retention(RetentionPolicy.RUNTIME)
@CanalListener(eventType = {CanalEntry.EventType.DELETE})
public @interface CanalDeleteListener {
    @AliasFor(annotation = CanalListener.class)
    String destination();
    @AliasFor(annotation = CanalListener.class)
    String database();
    @AliasFor(annotation = CanalListener.class)
    String[] table();
}
package com.hz.canal.starter.annotation;
import com.alibaba.otter.canal.protocol.CanalEntry;
import org.springframework.core.annotation.AliasFor;
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)
@Retention(RetentionPolicy.RUNTIME)
@CanalListener(eventType = {CanalEntry.EventType.DELETE})
public @interface CanalDeleteListener {
    @AliasFor(annotation = CanalListener.class)
    String destination();
    @AliasFor(annotation = CanalListener.class)
    String database();
    @AliasFor(annotation = CanalListener.class)
    String[] table();
}