使用springboot集成Mybaties,使用到了pageHelper这个分页插件,但是在使用的时候出现了一个问题
分页插件配置:
pagehelper:
helper-dialect: mysql
reasonable: true
params: count=countsql
support-methods-arguments: true
springboot启动报错:
Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Invocation of init method failed; nested exception is java.lang.ClassCastException: java.lang.Boolean cannot be cast to java.lang.String
居然报Boolean类型不能转换为String类型,莫名其妙,查看pageHelper是如何自动注入配置文件的属性,查看源码可以看到:
set方法注入的是String类型,但是Properties读取进来的所有属性都是String类型,为什么还会有这个问题呢?