天天看點

基于SSM架構的web入門項目(二)學習記錄2.MyBatis整合Spring-有Mapper實作類

配合哔哩哔哩視訊學習【SSM 架構】SpringMVC+Spring+Mybatis SSM 整合+實戰+源碼7-10集

2.MyBatis整合Spring-有Mapper實作類

2.1.導入必須包

mybatis-spring

spring-ioc

spring-aop

spring-tx

spring-context

基于SSM架構的web入門項目(二)學習記錄2.MyBatis整合Spring-有Mapper實作類

2.2.編寫Mapper的實作類

接口:

package com.ssm.dao;

import com.ssm.domain.Customer;

public interface CustomerMapper {
	
	/**
	 * 添加客戶
	 */
	public void saveCustomer(Customer customer); 
}

           

實作類:

package com.ssm.dao.impl;

import org.apache.ibatis.session.SqlSession;
import org.mybatis.spring.support.SqlSessionDaoSupport;

import com.ssm.dao.CustomerMapper;
import com.ssm.domain.Customer;

public class CustomerMapperImpl extends SqlSessionDaoSupport implements CustomerMapper {

	public void saveCustomer(Customer customer) {
		SqlSession sqlSession = this.getSqlSession();
		sqlSession.insert("saveCustomer",customer);
		//這裡不需要事務的送出
	}

}


           

2.3.編寫applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop" 
	xmlns:tx="http://www.springframework.org/schema/tx"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
	http://www.springframework.org/schema/beans/spring-beans.xsd
	http://www.springframework.org/schema/context
	http://www.springframework.org/schema/context/spring-context.xsd
	http://www.springframework.org/schema/aop
	http://www.springframework.org/schema/aop/spring-aop.xsd
	http://www.springframework.org/schema/tx 
	http://www.springframework.org/schema/tx/spring-tx.xsd">
	
	<!-- 讀取jdbc.properties -->
	<context:property-placeholder location="classpath:jdbc.properties"/>
	
	<!-- 建立DataSource -->
	<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
		<property name="url" value="${jdbc.url}"/>
		<property name="driverClassName" value="${jdbc.driverClass}"/>
		<property name="username" value="${jdbc.user}"/>
		<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">
		<!-- 關聯連接配接池 -->
		<property name="dataSource" ref="dataSource"/>
		<!-- 加載sql映射檔案 -->
		<property name="mapperLocations" value="classpath:mapper/*.xml"/>
	</bean>
	
	<!-- 建立CustomerMapperImpl對象,注入SqlSessionFactory -->
	<bean id="customerMapper" class="com.ssm.dao.impl.CustomerMapperImpl">
		<!-- 關聯sqlSessionFactory -->
		<property name="sqlSessionFactory" ref="sqlSessionFactory"/>
	</bean>
	
</beans>
           

2.4.編寫測試類

基于SSM架構的web入門項目(二)學習記錄2.MyBatis整合Spring-有Mapper實作類

繼續閱讀