可以结合的上一遍文章一起看:
https://developer.aliyun.com/article/1067864?spm=a2c6h.26396819.creator-center.12.f1883e18uYUf9m
1、主要是查了javaClientGenerator的说明:If the targetRuntime is MyBatis3 the following predefined values can be used:
如下图,答案很明了了,如果想 type="XMLMAPPER"生效就必须在 添加targetRuntime 是MyBatis3
2、在generatorConfig的context 元素增加targetRuntime="MyBatis3"
<commentGenerator>
<property name="suppressDate" value="true" />
<property name="suppressAllComments" value="true" />
再运行,问题解决!