文章目录
- 1.注释掉原本的MybatisConfig
- 2. 将mybatis的配置文件改为mybatis-plus文件
##前言
出先下列异常:
请求地址’/prod-api/user’,发生未知异常.
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.ruoyi.web.mapper.UserMapper.selectById这里使用mybatis-plus
1.注释掉原本的MybatisConfig
位置位于
2. 将mybatis的配置文件改为mybatis-plus文件
mybatis-plus:# 指定实体类所在包的路径,MyBatis-Plus 会自动扫描该路径下的实体类typeAliasesPackage: com.ruoyi.**.domain# 指定 Mapper 接口所在包的路径,MyBatis-Plus 会自动扫描该路径下的 Mapper 接口mapperLocations: classpath*:mapper/**/*Mapper.xml# 指定 MyBatis 全局配置文件的位置# configLocation: classpath:mybatis/mybatis-config.xmlconfiguration:#在映射实体或者属性时,将数据库中表名和字段名中的下划线去掉,按照驼峰命名法映射map-underscore-to-camel-case: truelog-impl: org.apache.ibatis.logging.stdout.StdOutImplglobal-config:db-config:id-type: ASSIGN_ID
ok,再次运行即可