前两天一直在搞AngularJs,各种看代码,昨天晚上要逼近崩溃的时候,决定看点儿别的调解下心情,就换到了MyBatis。
## 一,基本配置
1,引入myBatis的jar包(github地址:[https://github.com/mybatis/mybatis-3/releases](https://github.com/mybatis/mybatis-3/releases)),我使用的是3.3.1这个版本。
![](https://box.kancloud.cn/2016-03-02_56d663824c768.png)
2,核心配置文件
示例配置文件我们可以在源码包里面找到:mybatis\mybatis-3-mybatis-3.3.1\src\test\java\org\apache\ibatis\submitted\complex_property\Configuration.xml
修改我们的连接字符串:
![](https://box.kancloud.cn/2016-03-02_56d66382600d9.png)
感觉还是跟hibernate蛮像的,别捉急,等用起来,会发现更像。
## 二,编写基本查询代码测试
~~~
/**
* 用来访问数据库的类
* @author LiuHuiChao
*
*/
public class DBAccess {
public SqlSession getSqlSession() throws IOException{
//通过配置文件获取数据库连接信息
Reader reader=Resources.getResourceAsReader("com/lhc/conofig/Configuration.xml");
//通过配置信息构建sqlSessionFactory
SqlSessionFactory sqlSessionFactory=new SqlSessionFactoryBuilder().build(reader);
//通过sqlSessionFactory打开一个数据库会话
SqlSession sqlSession=sqlSessionFactory.openSession();
return sqlSession;
}
}
~~~
mybatis主要是通过一个sqlSession类来进行操作的,以上代码为创建sqlSession的过程。
编写一个测试的Entity类:
![](https://box.kancloud.cn/2016-03-02_56d6638276adb.png)
通过XML文件配置此类与表的对应关系及sql操作语句:
~~~
<mapper namespace="Message">
<resultMap type="com.lhc.bean.Message" id="MessageResult">
<id column="id" jdbcType="INTEGER" property="id"/>
<result column="command" jdbcType="VARCHAR" property="command"/>
<result column="description" jdbcType="VARCHAR" property="description"/>
<result column="content" jdbcType="VARCHAR" property="content"/>
</resultMap>
<!-- 通过id调用sql语句,id是要唯一的 -->
<select id="queryMessageList" resultMap="MessageResult">
select id,command,description,content from message where 1=1
</select>
</mapper>
~~~
(还能把sql配置到xml里面,额,,学习了,这个是我大hibernate所没有的。。。)
最后不要忘记将类的xml引入到核心配置文件中(同hibernate):
~~~
<mappers>
<mapper resource="com/lhc/conofig/sqlXml/Message.xml"/>
</mappers>
~~~
最后, 测试下查询操作:
~~~
List<Message> messageList=new ArrayList<Message>();
DBAccess dbAccess=new DBAccess();
SqlSession sqlSession=null;
try {
sqlSession=dbAccess.getSqlSession();
//执行sql查询
messageList=sqlSession.selectList("Message.queryMessageList");
} catch (IOException e) {
e.printStackTrace();
}finally{
sqlSession.close();
}
//通过sqlSession执行sql语句
return messageList;
~~~
未完待续。。。(下面送张我收藏很久的图。。。)
![](https://box.kancloud.cn/2016-03-02_56d663828e07b.jpg)
- 前言
- Spring简化配置
- Spring中使用AspectJ实现AOP
- Spring中JDK的动态代理和CGLIB代理的区别
- Spring配置问题——元素 "context:component-scan" 的前缀 "context" 未绑定
- Hibernate中编程式事物的简单使用
- 使用Spring为Hibernate配置声明式事物
- Struts2+AJAX获取json数据
- 中间件概述
- EJB(Enterprise Java Bean)概述
- JBoss 6.1安装配置问题
- EJB对象的部署及客户端调用简单示例
- 有状态的EJB对象和无状态的EJB对象
- EJB远程调用和本地调用
- MyBatis——入门select