Mybatis使用注解开发
一、使用注解开发
1. 注解在接口上实现
1 | public interface UserMapper { |
2. 需要在核心配置文件中绑定接口!
1 | <!--绑定接口--> |
1 | public interface UserMapper { |
1 | <!--绑定接口--> |
1 | -- 语法:select * from mybatis.user limit startIndex,pageSize; |
如果一个数据库操作,出现了异常,我们需要排错。日志就是最好的助手!曾经:sout、debug
现在:日志工厂
1 | configuration(配置) |
流程:搭建环境–>导入Mybatis–>编写代码–>测试
1 | CREATE DATABASE `mybatis`; |