Xiaojian Wang

Results 2 issues of Xiaojian Wang

Sublime Text Build 3126: I tried in a Windows 7 machine and none of the above modes can be activated with the default key bindings. Changing key bindings does not...

### 当前使用版本(必填,否则不予处理) 1.4.13 ### 该问题是如何引起的?(确定最新版也有问题再提!!!) https://github.com/yulichang/mybatis-plus-join/issues/127 已经修复了这个问题,但是在mybatis plus后续更新后修复应该是失效了。 ### 重现步骤(如果有就写完整) 创建一个List\类型field,A是一个用Jackson标注过的pojo类型。field带有mybatis plus的JacksonTypeHandler的标注(该handler目前只支持postgres读,不支持写)。数据库对应posgres json或者jsonb类型,内容是包含json object的列表(e.g. [{"prop": 1}, {"prop": 2}], prop是A的field name)。通过selectJoinList之类方法把json map到List\. ### 报错信息 会创建List\而不是List\ 原因是 https://github.com/yulichang/mybatis-plus-join/blob/master/mybatis-plus-join-core/src/main/java/com/github/yulichang/wrapper/segments/SelectCache.java#L95 这里 `this.typeHandlerClass = tableFieldInfo.getTypeHandler();`...