chenqian56131 / spring-boot-starter-canal

A convenient canal starter for spring boot that allows to listen to the event(s) which you are interested by implementing interface or annotation.
MIT License
165 stars 105 forks source link

最近尝试了下,自己处理数据逻辑,字段问题 #12

Closed lifaming15 closed 4 years ago

lifaming15 commented 4 years ago

数据库修改的A字段,但是: rowData.getAfterColumnsList().stream().filter(c -> { return c.getUpdated(); }).forEach(c -> log.debug("By--Annotation: " + c.getName() + " :: " + c.getValue() + " :: " + c.getMysqlType()));

打印出来的不是A字段 版本是:

com.xpand starter-canal 0.0.1
    <dependency>
        <groupId>com.alibaba.otter</groupId>
        <artifactId>canal.client</artifactId>
        <version>1.1.4</version>
    </dependency>
lifaming15 commented 4 years ago

删除h2.mv.db解决