Spring統合MyBatisパターン解析


この文章は主にSpring統合MyBatisの説明過程解析を紹介しています。例コードを通して紹介された非常に詳細で、皆さんの学習や仕事に対して一定の参考学習価値を持っています。必要な友達は下記の参照をしてください。
1.導入に必要なjar依存

!--MyBatis Spring      MyBatis  -->
<dependency>
 <groupId>org.mybatis</groupId>
 <artifactId>mybatis-spring</artifactId>
 <version>1.3.0</version>
</dependency>
<!--MyBatis   jar  -->
<dependency>
 <groupId>org.mybatis</groupId>
 <artifactId>mybatis</artifactId>
 <version>3.4.1</version>
</dependency>
2.MyBatisとSpring統合(XML版)
1.daoインターフェース

2.entityエンティティ類

3.service層インターフェース

4.serviceimpl実現類

5.PersonDao.xml配置

6.jdbc.properties配置

 7.大プロファイル

<?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:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context" 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/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
  <!--<context:component-scan base-package="com.spring"/>-->
  <!--       spring      -->
  <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="${jdbc.driver}"></property>
    <property name="url" value="${jdbc.url}"></property>
    <property name="username" value="${jdbc.username}"></property>
    <property name="password" value="${jdbc.password}"></property>
  </bean>
  <!--        -->
  <context:property-placeholder location="jdbc.properties.properties"/>
  <!--  DAO :mapper     -->
  <bean id="personDao" class="org.mybatis.spring.mapper.MapperFactoryBean">
    <property name="mapperInterface" value="com.spring.dao.PersonDao"></property>
    <property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
  </bean>
  <!--  service   -->
  <bean id="personService" class="com.spring.service.PersonServiceImpl">
    <property name="dao" ref="personDao"></property>
  </bean>
  <!-- sqlSessionFactory   SqlSession      -->
  <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    <property name="dataSource" ref="dataSource"></property>
    <!-- Mybatis       -->
    <property name="typeAliasesPackage" value="com.spring.entity"></property>
    <!--   sql    :mapper   xml   -->
    <property name="mapperLocations" value="classpath*:mapper/*.xml"/>
  </bean>
  <!-- MapperScannerConfigurer   mapper      -->
  <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    <property name="basePackage" value="com.spring.dao"></property>
  </bean>

  <!-- transactionManager      -->
  <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource"></property>
  </bean>
  <!--     -->
  <tx:advice transaction-manager="transactionManager" id="txAdvice">
    <tx:attributes>
      <!--get                  -->
      <tx:method name="get*" isolation="READ_COMMITTED" propagation="REQUIRED"/>
    </tx:attributes>
  </tx:advice>
</beans>
8.試験類

結果:

以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。