1. 程式人生 > >MyBatis的學習總結二

MyBatis的學習總結二

一、Spring整合MyBatis

1.整合思路:

1.1、SqlSessionFactory物件應該放到spring容器中作為單例存在。

1.2、傳統的dao的開發方式中,應該從spring容器中獲得sqlsession物件。

1.3、Mapper代理形式中,應該從spring容器中獲得mapper的代理物件。

1.4、資料庫的連結以及資料庫連線池事務管理都交給spring容器來完成。

2.整合需要的jar包:


3.建立java工程(結構如下)


4.建立applicationContext.xml配置檔案,將資料庫連線池和MyBtis的配置檔案SqlMapConfig.xml中配置的內容都交給Spring來管理。

即讓Spring來建立SqlSessionFactory和SqlSession,並且Mapper的代理物件也從Spring中獲取。(配置檔案如下)

db.properties檔案:

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/mybatis?characterEncoding=utf-8
jdbc.username=root
jdbc.password=root

applicationContext.xml配置檔案:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
	http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
	http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
	http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">

   <!-- 載入配置檔案 -->
   <context:property-placeholder location="classpath:db.properties" />

	<!-- 資料庫連線池 -->
	<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
		destroy-method="close">
		<property name="driverClassName" value="${jdbc.driver}" />
		<property name="url" value="${jdbc.url}" />
		<property name="username" value="${jdbc.username}" />
		<property name="password" value="${jdbc.password}" />
		<property name="maxActive" value="10" />
		<property name="maxIdle" value="5" />
	</bean>

	<!-- 配置SqlSessionFactory -->
	<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		<!-- 配置mybatis核心配置檔案,後期可以將分頁外掛,以及通用mapper外掛放入該配置檔案 -->
		<!-- <property name="configLocation" value="classpath:SqlMapConfig.xml" /> -->
		<!-- 配置資料來源 -->
		<property name="dataSource" ref="dataSource" />
		<!-- 配置批量起別名,同時支援子包下的掃描,就是com也可以掃描的到 -->
		<property name="typeAliasesPackage" value="com.evil.pojo"></property>
		<!-- 載入對映檔案 -->
		<property name="mapperLocations">
			<list>
				<!-- <value>User.xml</value> -->
			</list>
		</property>
	</bean>
	
	
	<!-- Mapper的開發整合 :方式一:配置mapper代理-->
	<!-- MapperFactoryBean作用: 拿到mybatis幫我們自動生成的實現類,放入spring容器中 -->
	<!-- <bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">	
		載入對映檔案,跟mybatis核心配置檔案的class屬性特點一樣
		<property name="mapperInterface" value="com.evil.mapper.UserMapper"></property>		
		<property name="sqlSessionFactory" ref="sqlSessionFactory"></property>		
	</bean> -->
	
	<!-- Mapper的開發整合 :方式二:掃描包形式配置mapper-->
	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
		<property name="basePackage" value="com.evil.mapper"></property>
		<!-- 
		MapperScannerConfigurer已經主動到spring容器中拿sqlSessionFactory,不需要手動注入
		<property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
		 -->
	</bean>
</beans>

5.建立user的實體類

package com.evil.pojo;
import java.util.Date;
import java.util.List;

public class User {
	
	private Integer id;
	private String username;// 使用者姓名
	private String sex;// 性別
	private Date birthday;// 生日
	private String address;// 地址
	private List<Orders> orders; ......
6.建立UserMapper.java介面,相當於dao。定義查詢方法:按照id進行查詢使用者

package com.evil.mapper;

import com.evil.pojo.User;

public interface UserMapper {
	User findUserById(Integer id);//按使用者Id進行查詢
}

7.定義mapper.xml對映檔案

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.evil.mapper.UserMapper">
	<select id="findUserById" parameterType="int" resultType="User">
		select * from user where id=#{id};
	</select>
	
</mapper>
8.建立測試類,執行測試

package com.evil.test;

import org.junit.Before;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.evil.mapper.UserMapper;
import com.evil.pojo.User;

public class NewMapperTest {
	UserMapper userMapper;
	@Before
	public void initUserMapper() throws Exception {
		ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
		userMapper=context.getBean(UserMapper.class);
	}
	//根據id進行查詢
	@Test
	public void findUserById(){
		User user =userMapper.findUserById(1);
		System.out.println(user);
	}
}

查詢結果為:User [id=1, username=王五, sex=2, birthday=null, address=null, orders=null]