ホームページ  >  記事  >  Java  >  mybatis の導入と構成の詳細

mybatis の導入と構成の詳細

黄舟
黄舟オリジナル
2017-09-02 11:14:401335ブラウズ

この記事では主にmybatisの導入と設定を紹介しており、MyBatis+Spring+MySqlの簡単な設定についても紹介していますので、興味のある方はぜひご覧ください

MyBatisの紹介

MyBatisはプログラムです。 SQL、ストアド プロシージャ、および高度なマッピングのための永続層フレームワークをカスタマイズできます。 MyBatis では、JDBC コードの大部分、パラメータの手動設定、結果セットの取得が不要になります。 MyBatis は、単純な XML と注釈のみを使用して、基本的なデータ型、マップ インターフェイス、および POJO をデータベース レコードに設定およびマッピングします。 Hibernate や Apache OJB などの「ワンストップ」ORM ソリューションと比較すると、Mybatis は「半自動」ORM 実装です。

必要な Jar パッケージ: mybatis-3.0.2.jar (mybatis コア パッケージ)。 mybatis-spring-1.0.0.jar (Spring と結合されたパッケージ)。

MyBatis+Spring+MySql の簡単な構成
1. Maven の Web プロジェクトを作成します。

3. xml 必要な jar パッケージ (Spring Framework、mybatis、mybatis-spring、junit など) を追加します。

4、web.xml および Spring 構成ファイルを変更します。 5、JSP ページと対応するコントローラーを追加します。テスト 。

MySqlデータベースを作成する




学生のコース選択管理データベースを作成します。

テーブル: 学生テーブル、クラステーブル、教師テーブル、コーススケジュール、学生コース選択テーブル。

論理関係: 各生徒にはクラスがあり、各クラスは 1 つのクラスの教師にのみなれます。

次の SQL を使用してデータベースを構築し、最初に生徒テーブルを作成します。データ(2 つ以上のアイテム)を挿入します。

その他の SQL については、resource/sql にプロジェクトのソース ファイルをダウンロードしてください。


/* 建立数据库 */ 
CREATE DATABASE STUDENT_MANAGER; 
USE STUDENT_MANAGER; 
 
/***** 建立student表 *****/ 
CREATE TABLE STUDENT_TBL 
( 
  STUDENT_ID     VARCHAR(255) PRIMARY KEY, 
  STUDENT_NAME    VARCHAR(10) NOT NULL, 
  STUDENT_SEX    VARCHAR(10), 
  STUDENT_BIRTHDAY  DATE, 
  CLASS_ID      VARCHAR(255) 
); 
 
/*插入**/ 
INSERT INTO STUDENT_TBL (STUDENT_ID, 
             STUDENT_NAME, 
             STUDENT_SEX, 
             STUDENT_BIRTHDAY, 
             CLASS_ID) 
 VALUES  (123456, 
      '某某某', 
      '女', 
      '1980-08-01', 
      121546 
      )

MySql への接続に使用する設定ファイル mysql.properties を作成します。


jdbc.driverClassName=com.mysql.jdbc.Driver 
jdbc.url=jdbc:mysql://localhost:3306/student_manager?user=root&password=bjpowernode&useUnicode=true&characterEncoding=UTF-8


MyBatis環境構築



どの順番でも、書き込んだファイルの修正が最小限で済むため、現在の順序になっています。

エンティティクラスの作成: StudentEntity


public class StudentEntity implements Serializable { 
  private static final long serialVersionUID = 3096154202413606831L; 
  private ClassEntity classEntity; 
  private Date studentBirthday; 
  private String studentID; 
  private String studentName; 
  private String studentSex; 
   
  public ClassEntity getClassEntity() { 
    return classEntity; 
  } 
 
  public Date getStudentBirthday() { 
    return studentBirthday; 
  } 
 
  public String getStudentID() { 
    return studentID; 
  } 
 
  public String getStudentName() { 
    return studentName; 
  } 
 
  public String getStudentSex() { 
    return studentSex; 
  } 
 
  public void setClassEntity(ClassEntity classEntity) { 
    this.classEntity = classEntity; 
  } 
 
  public void setStudentBirthday(Date studentBirthday) { 
    this.studentBirthday = studentBirthday; 
  } 
 
  public void setStudentID(String studentID) { 
    this.studentID = studentID; 
  } 
 
  public void setStudentName(String studentName) { 
    this.studentName = studentName; 
  } 
 
  public void setStudentSex(String studentSex) { 
    this.studentSex = studentSex; 
  } 
}

Studentクラス: StudentMapperに対応するデータアクセスインターフェース

Daoインターフェースの作成。


public interface StudentMapper { 
   
  public StudentEntity getStudent(String studentID); 
   
  public StudentEntity getStudentAndClass(String studentID); 
   
  public List<StudentEntity> getStudentAll(); 
   
  public void insertStudent(StudentEntity entity); 
   
  public void deleteStudent(StudentEntity entity); 
   
  public void updateStudent(StudentEntity entity); 
}

SQLマッピングステートメントファイルを作成します


StudentクラスSQLステートメントファイル StudentMapper.xml


resultMapタグ:テーブルフィールドと属性のマッピング。

タグを選択します:クエリSQL。


<?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.manager.data.StudentMapper"> 
 
  <resultMap type="StudentEntity" id="studentResultMap"> 
    <id property="studentID" column="STUDENT_ID"/> 
    <result property="studentName" column="STUDENT_NAME"/> 
    <result property="studentSex" column="STUDENT_SEX"/> 
    <result property="studentBirthday" column="STUDENT_BIRTHDAY"/> 
  </resultMap> 
   
  <!-- 查询学生,根据id --> 
  <select id="getStudent" parameterType="String" resultType="StudentEntity" resultMap="studentResultMap"> 
    <![CDATA[ 
      SELECT * from STUDENT_TBL ST 
        WHERE ST.STUDENT_ID = #{studentID} 
    ]]>  
  </select> 
   
  <!-- 查询学生列表 --> 
  <select id="getStudentAll" resultType="commanagerdatamodelStudentEntity" resultMap="studentResultMap"> 
    <![CDATA[ 
      SELECT * from STUDENT_TBL 
    ]]>  
  </select> 
   
</mapper>


MyBatis マッパー設定ファイルを作成する


src/main/resource に MyBatis 設定ファイル mybatis-config.xml を作成します。


typeAliases タグ: クラスにエイリアスを与えます。 com.manager.data.model.StudentEntity クラスの場合は、代わりに StudentEntity を使用できます。

Mappersタグ: MyBatisにエンティティクラスのSQLマッピング文ファイルをロードします。


<?xml version="1.0" encoding="UTF-8" ?> 
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> 
<configuration> 
  <typeAliases> 
    <typeAlias alias="StudentEntity" type="com.manager.data.model.StudentEntity"/> 
  </typeAliases> 
  <mappers> 
    <mapper resource="com/manager/data/maps/StudentMapper.xml" /> 
  </mappers> 
</configuration>

Spring 構成ファイルを変更します

主なことは、SqlSession プロダクション ファクトリ クラスの Bean: SqlSessionFactoryBean (mybatis.spring パッケージ内) を追加することです。構成ファイルの場所とデータソースを指定する必要があります。


データアクセスインターフェースに対応する実装Bean。 MapperFactoryBean を通じて作成されます。インターフェイス クラスの完全名と SqlSession ファクトリ Bean への参照を実装する必要があります。


<!-- 导入属性配置文件 --> 
<context:property-placeholder location="classpath:mysql.properties" /> 
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> 
  <property name="driverClassName" value="${jdbc.driverClassName}" /> 
  <property name="url" value="${jdbc.url}" /> 
</bean> 
 
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> 
  <property name="dataSource" ref="dataSource" /> 
</bean> 
 
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> 
  <property name="configLocation" value="classpath:mybatis-config.xml" /> 
  <property name="dataSource" ref="dataSource" /> 
</bean> 
 
<!— mapper bean --> 
<bean id="studentMapper" class="org.mybatis.spring.MapperFactoryBean"> 
  <property name="mapperInterface" value="com.manager.data.StudentMapper" /> 
  <property name="sqlSessionFactory" ref="sqlSessionFactory" /> 
</bean>

マッパー Bean を定義することもできません。アノテーションを使用します。

StudentMapper アノテーションを追加します


@Repository 
@Transactional 
public interface StudentMapper { 
}

これに応じて、dispatcher-servlet.xml にスキャンを追加する必要があります


<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> 
  <property name="annotationClass" value="org.springframework.stereotype.Repository"/> 
  <property name="basePackage" value="comlimingmanager"/> 
  <property name="sqlSessionFactory" ref="sqlSessionFactory"/> 
</bean>


Test StudentMapper


SpringMVC を使用してテストし、TestController を作成し、Tomcat を構成し、index.do ページにアクセスしてテストします:


@Controller 
public class TestController { 
 
  @Autowired 
  private StudentMapper studentMapper; 
   
  @RequestMapping(value = "index.do") 
  public void indexPage() {   
    StudentEntity entity = studentMappergetStudent("10000013"); 
    System.out.println("name:" + entity.getStudentName()); 
  }   
}

Junit を使用してテスト:


@RunWith(value = SpringJUnit4ClassRunner.class) 
@ContextConfiguration(value = "test-servletxml") 
public class StudentMapperTest { 
   
  @Autowired 
  private ClassMapper classMapper; 
   
  @Autowired 
  private StudentMapper studentMapper; 
   
  @Transactional 
  public void getStudentTest(){ 
    StudentEntity entity = studentMapper.getStudent("10000013"); 
    System.out.println("" + entity.getStudentID() + entity.getStudentName()); 
     
    List<StudentEntity> studentList = studentMapper.getStudentAll(); 
    for( StudentEntity entityTemp : studentList){ 
      System.out.println(entityTemp.getStudentName()); 
    } 
  } 
}

以上がmybatis の導入と構成の詳細の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。