org.mybatis
mybatis
3.4.5
insert into user(username,birthday,sex,address) values(#{username},#{birthday},#{sex},#{address})
update user set username = #{username},birthday = #{birthday},sex = #{sex},address = #{address} where id = #{id}
delete from user where id = #{abc}
- 数据库环境的配置,支持多环境配置
- 其中,事务管理器(transactionManager)类型有两种:
- JDBC: 这个配置就是直接使用了JDBC 的提交和回滚设置,它依赖于从数据源得到的连接来管理事务作用域。
- MANAGED: 这个配置几乎没做什么。它从来不提交或回滚一个连接,而是让容器来管理事务的整个生命周期。 例如:mybatis与spring整合后,事务交给spring容器管理。
- 其中,数据源(dataSource)常用类型有三种:
- UNPOOLED:这个数据源的实现只是每次被请求时打开和关闭连接。
- POOLED: 这种数据源的实现利用“池”的概念将 JDBC 连接对象组织起来。
- JNDI : 这个数据源实现是为了能在如 EJB 或应用服务器这类容器中使用,容器可以集中或在外部配置数据 源,然后放置一个 JNDI 上下文的数据源引用
实际开发中,习惯将数据源的配置信息单独抽取成一个properties文件,该标签可以加载额外配置的 properties:
- 类型别名是为 Java 类型设置一个短的名字。
- 为了简化映射文件 Java 类型设置,mybatis框架为我们设置好的一些常用的类型的别名:
- 原来的类型名称配置如下:
- 配置typeAliases,为com.lagou.domain.User定义别名为user:
-
- 该标签的作用是加载映射的,加载方式有如下几种:
-
使用相对于类路径的资源引用,例如:
使用完全限定资源定位符(URL),例如:
《下面两种mapper代理开发中使用:暂时了解》
使用映射器接口实现类的完全限定类名,例如
将包内的映射器接口实现全部注册为映射器,例如:
建立对象关系映射
/*
多条件查询方式二
*/
public List findByIdAndUsername2(@Param("id") int id, @Param("username") String username);
/*
多条件查询方式三
*/
public List findByIdAndUsername3(User user);
username传值要带%号
我们很多时候有这种需求,向数据库插入一条记录后,希望能立即拿到这条记录在数据库中的主键值
insert into user(username,birthday,sex,address) values(#{username},#{birthday},#{sex},#{address})
SELECT LAST_INSERT_ID();
insert into user(username,birthday,sex,address) values(#{username},#{birthday},#{sex},#{address})
主键返回是直接在 实体对象中
update user
username = #{username},
birthday = #{birthday},
sex = #{sex},
address = #{address},
where id = #{id}
select * from user
select * from user
maven pom.xml
com.github.pagehelper
pagehelper
3.7.5
com.github.jsqlparser
jsqlparser
0.9.1
sqlconfig.xml
// 设置分页参数
// 参数1: 当前页
// 参数2: 每页显示的条数
PageHelper.startPage(1,2);
List users = mapper.findAllResultMap();
for (User user : users) {
System.out.println(user);
}
// 获取分页相关的其他参数
PageInfo pageInfo = new PageInfo(users);
System.out.println("总条数:"+pageInfo.getTotal()); System.out.println("总页数:"+pageInfo.getPages()); System.out.println("当前页:"+pageInfo.getPageNum()); System.out.println("每页显示长度:"+pageInfo.getPageSize()); System.out.println("是否第一页:"+pageInfo.isIsFirstPage()); System.out.println("是否最后一页:"+pageInfo.isIsLastPage())
绑定主键
绑定主键 传值uid
联合查询
SELECT * FROM orders o LEFT JOIN USER u ON o.`uid`=u.`id`;
嵌套查询
先查询订单 SELECT * FROM orders
再根据订单uid外键,查询用户 SELECT * FROM `user` WHERE id = #{根据订单查询的uid}
最后使用mybatis,将以上二步嵌套起来