记录一下本次在新公司,新项目搭建使用tk.mybatis的一些坑吧。
1. selectByPrimaryKey查询总是无结果
原因如下:
Integer
)而是使用的基本类型(int
)@Id
不在字段上,而是在方法上。由于我之前一直用JPA都可以所以采坑了2. config-location 和 mapper-locations
config-location:是指定mybatis的配置XML文件名
mapper-locations:sql的XML文件路径
参考:
[1]:https://www.cnblogs.com/larryzeal/p/5874107.html
[2]:https://blog.csdn.net/Oceanside_yh/article/details/82958056