springbo0t application.properties里关闭mybatis的驼峰转换不起作用,该给那里打断点查看原因?

#mybatis.configuration.map-underscore-to-camel-case=false
mybatis.configuration.mapUnderscoreToCamelCase=false
springbo0t application.properties里关闭mybatis的驼峰转换不起作用,该给那里打断点查看原因,我往下调试,但调用链太长不知道哪个方法需要重点查看


mybatis-plus:
  configuration:
    # 是否开启自动驼峰命名规则(camel case)映射,即从经典数据库列名 A_COLUMN(下划线命名) 到经典 Java 属性名 aColumn(驼峰命名) 的类似映射
    map-underscore-to-camel-case: false

img