本文共 481 字,大约阅读时间需要 1 分钟。
两种方式:注解和xml
无论是使用注解还是 xml 映射文件配置方式,在使用之前有两步是必须的:
引入依赖
org.mybatis.spring.boot mybatis-spring-boot-starter
在启动类上加注解 @MapperScan 指明 mapper 类的位置
@MapperScan("com.imooc.mapper")
public class ProjectApplication { public static void main(String[] args) { SpringApplication.run(ProjectApplication.class, args); } } --------------------- 转载:https://blog.csdn.net/solocoder/article/details/84990904转载:
转载:
未完。。