解决Mybatis没办法绑定到xml的的报错Invalid bound statement (not found) ,对应的配置
mybatis-plus:
configuration:
# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 开启sql日志
map-underscore-to-case: true # 开启驼峰映射(mp默认开启)
jdbc-type-for-null: 'null' # 是否设置字段为null
call-setters-on-nulls: true # 是否调用set方法时传入null值
shrink-whitespaces-in-sql: true # 去掉sql中多余的空格
mapper-locations: classpath*:mapper/*Mapper.xml # mapper文件位置
global-config:
banner: false