Mapped Statements collection does not contain value for
程序员文章站
2022-07-15 12:14:29
...
Spring Boot
异常信息:
Mapped Statements collection does not contain value for
com.test.test.member.mapper.mysql.ClientMapper.queryClientById2
#映射语句集合不包含com.test.test.member.mapper.mysql.ClientMapper.queryclientbyid2的值
-->也就是说找不到这个ClientMapper的queryClientById2方法
代码信息:
@Select("select * from test.order_dealer where order_no=#{orderNo}")
@Results({
@Result(column = "client_id", property = "client",
one = @One(
select ="com.test.test.member.mapper.mysql.ClientMapper.queryClientById2",
fetchType = FetchType.DEFAULT
)
)
})
public Order queryOrderByOrderNo(...);
错误修改:(未找到Mapper层,启动类中添加该Mapper到MapperScan)
@SpringBootApplication
@EnableTransactionManagement
@MapperScan({
"com.test.test.system.mapper.mysql",
"com.test.test.quotation.mapper.mysql",
"com.test.test.product.mapper.mysql",
"com.test.test.task.mapper.mysql",
"com.test.test.order.mapper.mysql",
"com.test.test.member.mapper.mysql"})
public class CloudhomeApplication {
.....
}
上一篇: PTA 02-线性结构3 Reversing Linked List (25 分)
下一篇: Mybatis报错—— Mapped Statements collection does not contain value for com.mapper.DepartmentMapper
推荐阅读
-
moven 部署Sping与mybatis时,Mapped Statements collection does not contain value for Xxxxxxxx
-
Mapped Statements collection already contains value for xxx
-
Mybatis:Mapped Statements collection does not contain value for
-
Mapped Statements collection does not contain value for Xxxx
-
Mapped Statements collection does not contain value for XXX
-
Mapped Statements collection does not contain value for
-
Mapped Statements collection does not contain value for xxx
-
[email protected]使用报错:Mapped Statements collection does not contain value for XXX
-
mybatis错误 Mapped Statements collection does not contain value for
-
Mapped Statements collection does not contain value for