1.什麼是Mybatis?
--一個開源的持久層框架
--封裝了全部的JDBC代碼和參數以及及國際的檢索
--使用簡單的XML或註解作配置和定義映射關係
2.與jdbc及hibernate的對比
--jdbc: 速度快 代碼量大 須要寫sql。
--hibernate: 不用寫sql 代碼量少 速度慢 學習難度大。
會生成複雜的sql,很差優化。
--mybatis:速度適中,須要寫sql,代碼量少,學習難度小。
3.編程步驟
step1. 導包。--mybatis,jdbc
step2. 添加配置文件。
注:鏈接池的配置,映射文件的位置。
step3. 寫一個JavaBean實體類。
注:屬性名必須與數據庫字段名一致
step4. 寫一個映射文件。
注:裏面主要是sql語句。
step5. 調用SqlSession提供的方法來訪問數據庫。
4.MyBatis主配置文件
----在src下建立MyBatis主配置文件SqlMapConfig.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration PUBLIC
"-//ibatis.apache.org//DTD Config 3.0//EN"
"http://ibatis.apache.org/dtd/ibatis-3-config.dtd">
<configuration>
<environments default="environment">
<environment id="environment">
<transactionManager type="JDBC" />
<dataSource type="POOLED">
<property name="driver" value="oracle.jdbc.OracleDriver" />
<property name="url"
value="jdbc:oracle:thin:@localhost:1521:xe" />
<property name="username" value="lhh" />
<property name="password" value="123456" />
</dataSource>
</environment>
</environments>
<mappers>
<mapper resource="com/tarena/dao/EmpMapper.xml" />
</mappers>
</configuration>
----建立映射文件EmpMapper.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC
"-//ibatis.apache.org//DTD Mapper 3.0//EN"
"http://ibatis.apache.org/dtd/ibatis-3-mapper.dtd">
<mapper namespace="com.tarena.dao.EmpMapper">
<select id="findAll"
resultType="com.tarena.entity.Emp">
select * from t_emp
</select>
<select id="findById"
parameterType="integer"
resultType="com.tarena.entity.Emp">
select * from t_emp where empno=#{id}
</select>
<insert id="save"
parameterType="com.tarena.entity.Emp">
insert into t_emp values(
emp_seq.nextval,
#{ename},
#{job},
#{mgr},
#{hiredate},
#{sal},
#{comm},
#{deptno}
)
</insert>
<update id="update"
parameterType="com.tarena.entity.Emp">
update t_emp set
ename=#{ename},
job=#{job},
mgr=#{mgr},
hiredate=#{hiredate},
sal=#{sal},
comm=#{comm},
deptno=#{deptno}
where empno=#{empno}
</update>
<delete id="delete"
parameterType="integer">
delete from t_emp where empno=#{id}
</delete>
</mapper>java
4. 使用Mapper映射器
--Mapper映射器使用注意事項:
Mapper接口名和對應的映射文件中的namespace必須一致
Mapper接口中的方法必須和映射文件中的對應的SQL元素ID一致sql
1)建立Mapper映射器
import java.util.List;
import java.util.Map;
import com.tarena.entity.Emp;
public interface EmpMapper {
List<Emp> findAll();
Emp findById(int id);
void save(Emp e);
void update(Emp e);
void delete(int id);
List<Map<String, Object>> findByDeptNo(int deptno);
}數據庫
2)測試
/**
* 使用Mapper映射器
*/
public void test1() {
SqlSessionFactoryBuilder ssfb = new SqlSessionFactoryBuilder();
SqlSessionFactory ssf = ssfb.build(TestCase.class.getClassLoader().getResourceAsStream("SqlMapConfig.xml"));
// SqlSession是執行sql的容器。
SqlSession session = ssf.openSession();
//Mybatis 依據Mapper映射器(接口要求),返回一個符合該接口要求的對象
EmpMapper em = session.getMapper(EmpMapper.class);
Map<String,Object> data = em.findByID(1);
System.out.println(data.get("name".toUpperCase()));
}apache
5.使用ResultMap映射結果
--使用ResultMap映射結果,解決表中字段和實體類中屬性不一樣名的問題。
--經過在映射文件中配置<resultMap>標記,
將表中字段和實體對象中屬性映射。
--建立映射文件DeptMapper.xml
<mapper namespace="com.tarena.dao.DeptMapper">
<select id="findAll" resultMap="deptMap">
select * from t_dept
</select>
<resultMap type="com.tarena.entity.Dept" id="deptMap">
<result property="id" column="deptno"/>
<result property="name" column="dname"/>
<result property="loc" column="loc"/>
</resultMap>
</mapper>編程