国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Mybatis初體驗

flyer_dev / 3087人閱讀

摘要:是支持普通查詢,存儲過程和高級映射的優秀持久層框架。其中,標簽內指定的是你定義的實體類的別名,方便之后使用。如果有問題會輸出相應的提示。結果根據配置,我們生成了三個文件。

MyBatis 是支持普通 SQL查詢,存儲過程和高級映射的優秀持久層框架。MyBatis 消除了幾乎所有的JDBC代碼和參數的手工設置以及結果集的檢索。MyBatis 使用簡單的 XML或注解用于配置和原始映射,將接口和 Java 的POJOs(Plain Old Java Objects,普通的 Java對象)映射成數據庫中的記錄。

以前都是用Hibernate比較多,項目中使用到的Mybatis封裝的Dao也是別人封裝好的。今天第一次看Mybatis文檔,寫一個簡單的demo加深印象。

Mybatis入門 開發環境配置

新建一個maven項目:

加入mysql-connector-javamybatis,還有Lombok(Lombok不是必須的)的依賴:


    4.0.0
    com.fengyuan
    mybatis-demo
    0.0.1-SNAPSHOT

    
        
            org.projectlombok
            lombok
            1.14.4
        
        
            mysql
            mysql-connector-java
            5.1.38
        
        
            org.mybatis
            mybatis
            3.2.8
        
    

    
        
            
                org.apache.maven.plugins
                maven-compiler-plugin
                
                    1.8
                    1.8
                
            
        
    

建表

在mysql中新建數據庫mybatisdemo,并創建student表:

表中有兩條記錄:

創建實體類

創建表對應的Model,Student類:

package com.fengyuan.domain;

import lombok.Data;

public @Data class Student {
    private int id;
    private String name;
    private int age;
}
添加配置文件

在項目中新建mybatis文件夾,在其中添加Mybatis的配置文件mybatis-conf.xml,在其中配置數據源。




    
        
    
    
    
        
            
            
                
                
                
                
            
        
    

其中,標簽內指定的是你定義的實體類的別名,方便之后使用。

定義映射文件

在mybatis文件夾底下新建一個mapper文件夾,存放映射文件,在其中新建student表對應的映射文件studentMapper.xml




    

namespace是唯一的,namespace有點像包名+類名,id像是方法名。parameterType是方法的參數類型,resultType中的"Student"就是前面定義的別名,是方法的返回類型。
定義完映射文件,將其注冊到配置文件中:




    
        
    
    
    
        
            
            
                
                
                
                
            
        
    

    
    
        
    
測試

完成以上步驟,就可以開始測試了。
測試類:

package com.fengyuan.client;

import java.io.IOException;
import java.io.Reader;

import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;

import com.fengyuan.domain.Student;

public class Main {
    public static void main(String[] args) {
        Reader reader = null;
        try {
            // 加載配置文件
            reader = Resources.getResourceAsReader("mybatis/mybatis-conf.xml");
        } catch (IOException e) {
            e.printStackTrace();
        }
        // 構建SqlSession工廠,并從工廠里打開一個SqlSession
        SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(reader);
        SqlSession sqlSession = sqlSessionFactory.openSession();
        
        try {
             // 找到對應的sql
            String statement = "com.fengyuan.domain.StudentMapper.getStudentById";
            // 傳入參數id=1,執行sql,返回查詢結果
            Student student = sqlSession.selectOne(statement, 1);
            System.out.println(student);
        } finally {
            sqlSession.close();
        }
    }
}

執行結果:

Student(id=1, name=Can Liu, age=40)

表中id為1的記錄已經取出來了。

項目結構:

另一種映射方式

前面的這種映射方式,雖然可以用,但是要用字符串來找對應的sql很不方便,還有可能出錯。mybatis提供了注解的方式,更簡單也更直觀。

定義接口

在項目中創建一個Dao接口StudentDao.java

package com.fengyuan.dao;

import org.apache.ibatis.annotations.Select;

import com.fengyuan.domain.Student;

public interface StudentDao {
    @Select("select * from student where id = #{id}")
    public Student getStudentById(int id);
}

把剛才寫在映射文件中的sql語句寫在@Select注解中即可,這樣一來映射文件studentMappper.xml就不用了。

當然,如果要用xml來映射也是可以的,接口中只寫方法,不要加注解。此時要求namespace必須與對應的接口全類名一致,id必須與對應接口的某個對應的方法名一致,如下:




    
注冊接口



    
    
        
    
    
    
    
        
            
            
                
                
                
                
            
        
    

    
    
    
    
    
        
    
    
測試
package com.fengyuan.client;

import java.io.IOException;
import java.io.Reader;

import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;

import com.fengyuan.dao.StudentDao;
import com.fengyuan.domain.Student;

public class Main {
    public static void main(String[] args) {
        Reader reader = null;
        try {
            // 加載配置文件
            reader = Resources.getResourceAsReader("mybatis/mybatis-conf.xml");
        } catch (IOException e) {
            e.printStackTrace();
        }
        // 構建SqlSession工廠,并從工廠里打開一個SqlSession
        SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(reader);
        SqlSession sqlSession = sqlSessionFactory.openSession();
        // 如果配置文件中沒有注冊接口,可以在代碼里注冊
        //sqlSession.getConfiguration().addMapper(StudentDao.class);
        
        try {
            // 獲取映射類
            StudentDao studentDao = sqlSession.getMapper(StudentDao.class);
            // 直接調用接口的方法,傳入參數id=1,返回Student對象
            Student student = studentDao.getStudentById(1);
            System.out.println(student);
        } finally {
            sqlSession.close();
        }
    }
}

如代碼中的注釋,除了在配置文件中注冊接口,也可以在代碼中用
sqlSession.getConfiguration().addMapper(StudentDao.class);來注冊。
然后就可以直接調用接口的方法來執行對應的sql語句,比第一種方式要直觀、而且“面向對象”了很多。

此時的項目結構:

CURD

除了前面演示的select語句,這邊補充一下其他的示例。

使用注解映射

在接口studentDao.java中定義相應的方法,并在注解中寫上對應的sql:

package com.fengyuan.dao;

import java.util.List;

import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.Update;

import com.fengyuan.domain.Student;

public interface StudentDao {
    @Select("select * from student where id= #{id}")
    public Student getStudentById(int id);
    
    @Insert("insert into student(name, age) values(#{name}, #{age})")
    public int addStudent(Student student);
    
    @Delete("delete from student where name = #{name}")
    public int removeStudentByName(String name);
    
    @Update("update student set age = #{age} where id = #{id}")
    public int updateStudent(Student student);
    
    @Select("select * from student")
    public List listAllStudents();
}
使用XML文件映射

如果是用XML文件,接口中只要定義好方法:

package com.fengyuan.dao;

import java.util.List;

import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.Update;

import com.fengyuan.domain.Student;

public interface StudentDao {
    public Student getStudentById(int id);
    
    public int addStudent(Student student);
    
    public int removeStudentByName(String name);
    
    public int updateStudent(Student student);
    
    public List listAllStudents();
}

然后,在XML文件中,定義好對應的sql:




    
    
    
        insert into student(name, age) values(#{name}, #{age})
    
    
    
        delete from student where name = #{name}
    
    
    
        update student set age = #{age} where id = #{id}
    
    
    

注意namespace與id要與接口中一一對應。

注冊到配置文件中

    

或者


    
測試
package com.fengyuan.client;

import java.io.Reader;
import java.util.List;

import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;

import com.fengyuan.dao.StudentDao;
import com.fengyuan.domain.Student;

public class Main {
    private static Reader reader;
    private static SqlSessionFactory sqlSessionFactory;
    
    static {
        try {
            reader = Resources.getResourceAsReader("mybatis/mybatis-conf.xml");
            sqlSessionFactory = new SqlSessionFactoryBuilder().build(reader);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    
    /**
     * 獲取sqlSession
     * @return
     */
    public static SqlSession getSqlSession() {
        return sqlSessionFactory.openSession();
    }
    
    /**
     * 查詢
     */
    public static void testQuery() {
        SqlSession sqlSession = getSqlSession();
        try {
            // 獲取映射類
            StudentDao studentDao = sqlSession.getMapper(StudentDao.class);
            
            // 根據id返回Student對象
            Student student = studentDao.getStudentById(1);
            System.out.println(student);
            
        } finally {
            sqlSession.close();
        }
    }
    
    /**
     * 新增
     */
    public static void testInsert() {
        SqlSession sqlSession = getSqlSession();
        try {
            // 獲取映射類
            StudentDao studentDao = sqlSession.getMapper(StudentDao.class);
            
            // 新建一個student對象
            Student student = new Student();
            student.setName("Aaron");
            student.setAge(24);
            
            // 插入到表中
            studentDao.addStudent(student);
            // 提交事務
            sqlSession.commit();
        } finally {
            sqlSession.close();
        }
    }
    
    /**
     * 更新
     */
    public static void testUpdate() {
        SqlSession sqlSession = getSqlSession();
        try {
            // 獲取映射類
            StudentDao studentDao = sqlSession.getMapper(StudentDao.class);
            
            // 取出student記錄,修改年齡,再更新到數據庫
            Student student = studentDao.getStudentById(2);
            student.setAge(44);
            studentDao.updateStudent(student);
            
            // 提交事務
            sqlSession.commit();
        } finally {
            sqlSession.close();
        }
    }
    
    /**
     * 刪除
     */
    public static void testRemove() {
        SqlSession sqlSession = getSqlSession();
        try {
            // 獲取映射類
            StudentDao studentDao = sqlSession.getMapper(StudentDao.class);
            
            studentDao.removeStudentByName("cly");
            
            // 提交事務
            sqlSession.commit();
        } finally {
            sqlSession.close();
        }
    }
    
    /**
     * 以List返回student表中所有記錄
     */
    public static void testGetAll() {
        SqlSession sqlSession = getSqlSession();
        try {
            // 獲取映射類
            StudentDao studentDao = sqlSession.getMapper(StudentDao.class);
            
            List students = studentDao.listAllStudents();
            System.out.println(students);
            
            // 提交事務
            sqlSession.commit();
        } finally {
            sqlSession.close();
        }
    }
    
    
    public static void main(String[] args) {
        
    }
}
Mybatis-Generator

手動書寫Mapping映射文件不僅繁瑣而且容易出錯,通過Mybatis-Generator,可以幫我們自動生成相關的文件。以下內容是從這篇博客中學習的,感謝博主。

準備

建表
這邊我們還是用前面的student表來作為示例。

mybatis-generator-core
我這邊用的是mybatis-generator-core-1.3.2.jar

數據庫驅動
同樣,數據庫用的是mysql,所以用了mysql-connector-java-5.1.25.jar

配置文件
generatorConfig.xml:




    
    
    
        
            
            
        
        
        
        
        
            
        
        
        
            
            
        
        
        
            
        
        
        
            
        
        
        

相關文件截圖:

執行

在命令行執行命令:

java -jar mybatis-generator-core-1.3.2.jar -configfile generatorConfig.xml -overwrite

輸出Mybatis Generator finished successfully.,表示執行成功,在指定的路徑生成了相應文件。如果有問題會輸出相應的提示。

結果

根據配置,我們生成了三個文件。

在src/main/java中com.fengyuan.model中生成了Student.java:

package com.fengyuan.model;

public class Student {
    private Integer id;

    private String name;

    private Integer age;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name == null ? null : name.trim();
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }
}

在src/main/java中com.fengyuan.mapping中生成了StudentMapper.xml:




  



  
  
id, name, age
  
  
  
delete from student
where id = #{id,jdbcType=INTEGER}
  
  
insert into student (id, name, age
  )
values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{age,jdbcType=INTEGER}
  )
  
  
insert into student

  
    id,
  
  
    name,
  
  
    age,
  


  
    #{id,jdbcType=INTEGER},
  
  
    #{name,jdbcType=VARCHAR},
  
  
    #{age,jdbcType=INTEGER},
  

  
  
update student

  
    name = #{name,jdbcType=VARCHAR},
  
  
    age = #{age,jdbcType=INTEGER},
  

where id = #{id,jdbcType=INTEGER}
  
  
update student
set name = #{name,jdbcType=VARCHAR},
  age = #{age,jdbcType=INTEGER}
where id = #{id,jdbcType=INTEGER}
  

在src/main/java中com.fengyuan.dao中生成了StudentMapper.java:

package com.fengyuan.dao;

import com.fengyuan.model.Student;

public interface StudentMapper {
    int deleteByPrimaryKey(Integer id);

    int insert(Student record);

    int insertSelective(Student record);

    Student selectByPrimaryKey(Integer id);

    int updateByPrimaryKeySelective(Student record);

    int updateByPrimaryKey(Student record);
}

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/65057.html

相關文章

  • Mybatis體驗

    摘要:概述是一款優秀的基于的持久層框架,封裝代碼,實現將參數映射到語句并執行,最后將執行結果映射到對象并返回的功能,支持自定義存儲過程和高級映射。命名無要求,但應該有意義。創建實體和映射文件是映射框架,所以我們需要對應創建類,與數據庫表進行映射。 概述 Mybatis是一款優秀的、基于SQL的持久層框架,封裝JDBC代碼,實現將參數映射到SQL語句并執行,最后將執行結果映射到JAVA對象并返...

    ingood 評論0 收藏0
  • [直播視頻] 《Java 微服務實踐 - Spring Boot 系列》限時折扣

    摘要:作為微服務的基礎設施之一,背靠強大的生態社區,支撐技術體系。微服務實踐為系列講座,專題直播節,時長高達小時,包括目前最流行技術,深入源碼分析,授人以漁的方式,幫助初學者深入淺出地掌握,為高階從業人員拋磚引玉。 簡介 目前業界最流行的微服務架構正在或者已被各種規模的互聯網公司廣泛接受和認可,業已成為互聯網開發人員必備技術。無論是互聯網、云計算還是大數據,Java平臺已成為全棧的生態體系,...

    Enlightenment 評論0 收藏0

發表評論

0條評論

flyer_dev

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<