本文共 5321 字,大约阅读时间需要 17 分钟。
MyBatis 是支持定制化 SQL、存储过程以及高级映射的优秀的持久层框架。MyBatis 避免了几乎所有的 JDBC 代码和手动设置参数以及获取结果集。MyBatis 可以对配置和原生Map使用简单的 XML 或注解,将接口和 Java 的 POJOs(Plain Old Java Objects,普通的 Java对象)映射成数据库中的记录。[1]
本文将演示Mybatis的基本用法,通过XML或接口类对数据库的增删改查。
1、使用Idea创建一个maven项目,依赖包内容如下
mysql mysql-connector-java 5.1.38 org.mybatis mybatis 3.4.4
2、创建Mybatis配置文件
使用Idea集成开发环境,可以下载Mybatis plugin,然后可更好的使用mybatis。关于mybatis的破解过程,参考附录的1、在resource目录下增加mybatis-config.xml文件,内容如下
2、在resource目录下增加BlogMapper.xml文件,内容如下
insert into Blog (id,title) values (#{id},#{title}) UPDATE Blog SET title=#{title} WHERE id=#{id} DELETE FROM BLOG WHERE id=#{id}
3、新建Blog对象
package me.aihe;public class Blog { int id; String title; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } @Override public String toString() { return "Blog{" + "id=" + id + ", title='" + title + '\'' + '}'; }}
4、新建主文件,Tutorial.java,并进行测试。
当前我们的数据表内容如下5、Tutorial.java文件内容如下
package me.aihe;import org.apache.ibatis.io.Resources;import org.apache.ibatis.session.SqlSession;import org.apache.ibatis.session.SqlSessionFactory;import org.apache.ibatis.session.SqlSessionFactoryBuilder;import java.io.IOException;import java.io.InputStream;import java.util.Random;public class Tutorial { public static void main(String[] args) { SqlSession sqlSession = null; try { InputStream inputStream = Resources.getResourceAsStream("mybatis-config.xml"); SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); // 查询数据库内容 sqlSession = sqlSessionFactory.openSession(); Blog blog = sqlSession.selectOne("me.aihe.dao.BlogMapper.selectBlog",1); System.out.println(blog); // 插入数据库内容 Blog b = new Blog(); b.setTitle("Insert Value" + new Random().nextInt(1000)); int row = sqlSession.insert("me.aihe.dao.BlogMapper.insertBlog",b); System.out.println(row); sqlSession.commit(); // 更新数据库内容 b.setId(2); row = sqlSession.update("me.aihe.dao.BlogMapper.updateBlog",b); System.out.println(row); sqlSession.commit(); //删除数据库内容 row = sqlSession.delete("me.aihe.dao.BlogMapper.deleteBlog",1); System.out.println(row); sqlSession.commit(); } catch (IOException e) { e.printStackTrace(); }finally { if (sqlSession != null) { sqlSession.close(); } } }}
最终的项目结构如下
6、运行结果
Blog{id=1, title='Hello Mybatis'}111
查看当前数据表的内容,可见查询了id为1的数据,插入了一条心的数据,更新了id为2 的数据,删除了id为1的数据。
这篇文章主要简单的演示了通过xml配置Mybatis,对数据库的增删改查。使用接口注解的方式类似,可自行查阅。关于更多高级用法,请听下回分解。
可扩充部分
1、mybatis-config.xml属性顺序错误
Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException: ### Error building SqlSession.### Cause: org.apache.ibatis.builder.BuilderException: Error creating document instance. Cause: org.xml.sax.SAXParseException; lineNumber: 50; columnNumber: 17; 元素类型为 "configuration" 的内容必须匹配 "(properties?,settings?,typeAliases?,typeHandlers?,objectFactory?,objectWrapperFactory?,reflectorFactory?,plugins?,environments?,databaseIdProvider?,mappers?)"
解决方案:mybatis-config.xml文件按照(properties?,settings?,typeAliases?,typeHandlers?,objectFactory?,objectWrapperFactory?,reflectorFactory?,plugins?,environments?,databaseIdProvider?,mappers?)进行顺序排列。
2、不能找到某个类文件
Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException: ### Error building SqlSession.### The error may exist in BlogMapper.xml### Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'Blog'. Cause: java.lang.ClassNotFoundException: Cannot find class: Blog
解决方案:两者选其一即可
1、在Mapper文件的resultType中返回为全路径2、添加TypeAlias
转载地址:http://gfkia.baihongyu.com/