Mybatis简介
1.1、Mybatis简介
●MyBatis是一款优秀的持久层框架
●它支持定制化SQL、存储过程以及高级映射。
●MyBatis避免了几乎所有的JDBC代码和手动设置参数以及获取结果集。
●MyBatis可以使用简单的XML或注解来配置和映射原生类型、接口和Java的POjO (Plain Old Java Objects,普通老式Java对象)为数据库中的记录。
●MyBatis本是apache的一个开源项目Batis, 2010年这个项目由apache software foundation迁移到了google code,并且改名为MyBatis。
●2013年11月迁移到Github。
1.2、持久层框架
Mybatis是一款持久层的框架(就是将数据存储到数据库中去)
1.3、获取Mybatis
一、Maven仓库(https://mvnrepository.com/)
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.13</version> </dependency>
二、Github(https://github.com/)
地址:https://github.com/mybatis/mybatis-3/releases
三、中文文档
地址:https://mybatis.org/mybatis-3/zh/index.html