mybatis错误之 Property 'configuration' and 'configLocation' can not specified with together 解决
mybatis 加入mybatis配置文件时
mybatis.config-location=classpath:mybatis/mybatis-config.xml
突然报错 Property 'configuration' and 'configLocation' can not specified with together
错误原因已经提示的很清楚了 configuration 和 configLocation 不能同时存在 也就是说:在spring的配置文件指定了mybatis的配置文件 就不能在spring的配置里面写入mybatis的配置,所以报错。
去除spring配置文件下的关于mybatis 的配置 也就是 mybatis.configuration 相关配置
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。