1. 设置sql映射文件路径
# 自动补全实例类的包名称
mybatis.type-aliases-package=com.atchina.springbootmvc04.pojo
# sql映射文件路径
mybatis.mapper-locations=classpath:mybatis/mapper/*.xml
设置了mybatis.mapper-locations=classpath:mybatis/mapper/*.xml, 这样mapper映射文件就不用和AccountMapper接口放在同一个包下。
2. 编写mapper接口, 使用@Mapper注解
3. 编写mapper映射文件