映射器
映射器可以理解为我们平常说的mapper接口,一般映射器可以由接口+xml/注解方式组成。生命周期:一个会话内。
一、使用
- 接口+xml
1 |
|
- 接口+注解
1 | "select *id,username,age from user where id=#{id}") (value= |
- Mapper本质
1 | // MapperProxy工厂 |
映射器可以理解为我们平常说的mapper接口,一般映射器可以由接口+xml/注解方式组成。生命周期:一个会话内。
1 | @Mapper |
1 | @Select(value="select *id,username,age from user where id=#{id}") |
1 | // MapperProxy工厂 |