天天看點

建構微服務:如何優雅的使用mybatis

  本文由www.29sl.com轉載釋出:這兩天啟動了一個新項目因為項目組成員一直都使用的是mybatis,雖然個人比較喜歡jpa這種極簡的模式,但是為了項目保持統一性技術選型還是定了 mybatis。到網上找了一下關于spring boot和mybatis組合的相關資料,各種各樣的形式都有,看的人心累,結合了mybatis的官方demo和文檔終于找到了最簡的兩種模式,花了一天時間總結後分享出來。

  orm架構的本質是簡化程式設計中操作資料庫的編碼,發展到現在基本上就剩兩家了,一個是宣稱可以不用寫一句sql的hibernate,一個是可以靈活調試動态sql的mybatis。兩者各有特點,在企業級系統開發中可以根據需求靈活使用。發現一個有趣的現象:傳統企業大都喜歡使用hibernate,網際網路行業通常使用mybatis。

  hibernate特點就是所有的sql都用Java代碼來生成,不用跳出程式去寫(看)sql,有着程式設計的完整性,發展到最頂端就是spring data jpa這種模式了,基本上根據方法名就可以生成對應的sql了,有不太了解的可以看我的上篇文章建構微服務:spring data jpa的使用(http://www.ityouknow.com)。

  mybatis初期使用比較麻煩,需要各種配置檔案、實體類、dao層映射關聯、還有一大推其它配置。當然mybatis也發現了這種弊端,初期開發了generator可以根據表結果自動生産實體類、配置檔案和dao層代碼,可以減輕一部分開發量;後期也進行了大量的優化可以使用注解了,自動管理dao層和配置檔案等,發展到最頂端就是今天要講的這種模式了,mybatis-spring-boot-starter就是springboot+mybatis可以完全注解不用配置檔案,也可以簡單配置輕松上手。

  現在想想spring boot 就是牛呀,任何東西隻要關聯到spring boot都是化繁為簡。

  mybatis-spring-boot-starter

  官方說明:MyBatis Spring-Boot-Starter will help you use MyBatis with Spring Boot

  其實就是mybatis看spring boot這麼火熱也開發出一套解決方案來湊湊熱鬧,但這一湊确實解決了很多問題,使用起來确實順暢了許多。mybatis-spring-boot-starter主要有兩種解決方案,一種是使用注解解決一切問題,一種是簡化後的老傳統。

  當然任何模式都需要首先引入mybatis-spring-boot-starter的pom檔案,現在最新版本是1.1.1

  <dependency>

  <groupId>org.mybatis.spring.boot</groupId>

  <artifactId>mybatis-spring-boot-starter</artifactId>

  <version>1.1.1</version></dependency>

  好了下來分别介紹兩種開發模式

  無配置檔案注解版

  就是一切使用注解搞定。

  1.添加相關maven檔案

  <dependencies>

  <groupId>org.springframework.boot</groupId>

  <artifactId>spring-boot-starter</artifactId>

  </dependency>

  <artifactId>spring-boot-starter-test</artifactId>

  <scope>test</scope>

  <artifactId>spring-boot-starter-web</artifactId>

  <version>1.1.1</version>

  <groupId>mysql</groupId>

  <artifactId>mysql-connector-java</artifactId>

  <artifactId>spring-boot-devtools</artifactId>

  <optional>true</optional>

  </dependency></dependencies>

  完整的pom包這裡就不貼了,大家直接看源碼。

  2.application.properties 添加相關配置

  mybatis.type-aliases-package=com.neo.entity

  spring.datasource.driverClassName = com.mysql.jdbc.Driver

  spring.datasource.url = jdbc:mysql://localhost:3306/test1?useUnicode=true&characterEncoding=utf-8spring.datasource.username = root

  spring.datasource.password = root

  springboot會自動加載spring.datasource.*相關配置,資料源就會自動注入到sqlSessionFactory中,sqlSessionFactory會自動注入到Mapper中,對了你一切都不用管了,直接拿起來使用就行了。

  在啟動類中添加對mapper包掃描@MapperScan

  @SpringBootApplication@MapperScan("com.neo.mapper")public class Application {

  public static void main(String[] args) {

  SpringApplication.run(Application.class, args);

  }

  或者直接在Mapper類上面添加注解@Mapper,建議使用上面那種,不然每個mapper加個注解也挺麻煩的。

  3.開發Mapper

  第三步是最關鍵的一塊,sql生産都在這裡

  public interface UserMapper {

  @Select("SELECT * FROM users")    @Results({

  @Result(property = "userSex",  column = "user_sex", javaType = UserSexEnum.class),

  @Result(property = "nickName", column = "nick_name")

  })

  List<UserEntity> getAll();

  @Select("SELECT * FROM users WHERE id = #{id}")

  @Results({

  UserEntity getOne(Long id);

  @Insert("INSERT INTO users(userName,passWord,user_sex) VALUES(#{userName}, #{passWord}, #{userSex})")

  void insert(UserEntity user);

  @Update("UPDATE users SET userName=#{userName},nick_name=#{nickName} WHERE id =#{id}")

  void update(UserEntity user);

  @Delete("DELETE FROM users WHERE id =#{id}")

  void delete(Long id);

  為了更接近生産我特地将user_sex、nick_name兩個屬性在資料庫加了下劃線和實體類屬性名不一緻,另外user_sex使用了枚舉。

  @Select 是查詢類的注解,所有的查詢均使用這個

  @Result 修飾傳回的結果集,關聯實體類屬性和資料庫字段一一對應,如果實體類屬性和資料庫屬性名保持一緻,就不需要這個屬性來修飾。

  @Insert 插入資料庫使用,直接傳入實體類會自動解析屬性到對應的值

  @Update 負責修改,也可以直接傳入對象

  @delete 負責删除

  了解更多屬性參考這裡http://www.mybatis.org/mybatis-3/zh/java-api.html

  注意,使用#符号和$符号的不同:

  // This example creates a prepared statement, something like select * from teacher where name = ?;

  @Select("Select * from teacher where name = #{name}")

  Teacher selectTeachForGivenName(@Param("name") String name);

  // This example creates n inlined statement, something like select * from teacher where name = 'someName';

  @Select("Select * from teacher where name = '${name}')

  4.使用

  上面三步就基本完成了相關dao層開發,使用的時候當作普通的類注入進入就可以了。

  @RunWith(SpringRunner.class)@SpringBootTestpublic class UserMapperTest {    @Autowired

  private UserMapper UserMapper;    @Test

  public void testInsert() throws Exception {

  UserMapper.insert(new UserEntity("aa", "a123456", UserSexEnum.MAN));

  UserMapper.insert(new UserEntity("bb", "b123456", UserSexEnum.WOMAN));

  UserMapper.insert(new UserEntity("cc", "b123456", UserSexEnum.WOMAN));

  Assert.assertEquals(3, UserMapper.getAll().size());

  }    @Test

  public void testQuery() throws Exception {

  List<UserEntity> users = UserMapper.getAll();

  System.out.println(users.toString());

  public void testUpdate() throws Exception {

  UserEntity user = UserMapper.getOne(3l);

  System.out.println(user.toString());

  user.setNickName("neo");

  UserMapper.update(user);

  Assert.assertTrue(("neo".equals(UserMapper.getOne(3l).getNickName())));

  源碼中controler層有完整的增删改查,這裡就不貼了。源碼在這裡spring-boot-mybatis-annotation(https://github.com/ityouknow/spring-boot-starter/tree/master/mybatis-spring-boot/spring-boot-mybatis-annotation)

  極簡xml版本

  極簡xml版本保持映射檔案的老傳統,優化主要展現在不需要實作dao的是實作層,系統會自動根據方法名在映射檔案中找對應的sql.

  1.配置

  pom檔案和上個版本一樣,隻是application.properties新增以下配置

  mybatis.config-locations=classpath:mybatis/mybatis-config.xml

  mybatis.mapper-locations=classpath:mybatis/mapper/*.xml

  指定了mybatis基礎配置檔案和實體類映射檔案的位址。

  mybatis-config.xml 配置

  <configuration>

  <typeAliases>

  <typeAlias alias="Integer" type="java.lang.Integer" />

  <typeAlias alias="Long" type="java.lang.Long" />

  <typeAlias alias="HashMap" type="java.util.HashMap" />

  <typeAlias alias="LinkedHashMap" type="java.util.LinkedHashMap" />

  <typeAlias alias="ArrayList" type="java.util.ArrayList" />

  <typeAlias alias="LinkedList" type="java.util.LinkedList" />

  </typeAliases>

  </configuration>

  這裡也可以添加一些mybatis基礎的配置。

  2.添加User的映射檔案

  <mapper namespace="com.neo.mapper.UserMapper" >

  <resultMap id="BaseResultMap" type="com.neo.entity.UserEntity" >

  <id column="id" property="id" jdbcType="BIGINT" />

  <result column="userName" property="userName" jdbcType="VARCHAR" />

  <result column="passWord" property="passWord" jdbcType="VARCHAR" />

  <result column="user_sex" property="userSex" javaType="com.neo.enums.UserSexEnum"/>

  <result column="nick_name" property="nickName" jdbcType="VARCHAR" />

  </resultMap>

  <sql id="Base_Column_List" >

  id, userName, passWord, user_sex, nick_name    </sql>

  <select id="getAll" resultMap="BaseResultMap"  >

  SELECT

  <include refid="Base_Column_List" />

  FROM users    </select>

  <select id="getOne" parameterType="java.lang.Long" resultMap="BaseResultMap" >

  FROM users

  WHERE id = #{id}

  </select>

  <insert id="insert" parameterType="com.neo.entity.UserEntity" >

  INSERT INTO

  users

  (userName,passWord,user_sex)

  VALUES

  (#{userName}, #{passWord}, #{userSex})    </insert>

  <update id="update" parameterType="com.neo.entity.UserEntity" >

  UPDATE

  SET

  <if test="userName != null">userName = #{userName},</if>

  <if test="passWord != null">passWord = #{passWord},</if>

  nick_name = #{nickName}

  WHERE

  id = #{id}

  </update>

  <delete id="delete" parameterType="java.lang.Long" >

  DELETE FROM

  id =#{id}

  </delete></mapper>

  其實就是把上個版本中mapper的sql搬到了這裡的xml中了。

  3.編寫Dao層的代碼

  對比上一步這裡全部隻剩了接口方法。

  使用和上個版本沒有任何差別,大家就看代碼吧

  老傳統優化版本代碼在這裡https://github.com/ityouknow/spring-boot-starter/tree/master/mybatis-spring-boot/spring-boot-mybatis-xml。

  如何選擇

  兩種模式各有特點,注解版适合簡單快速的模式,其實像現在流行的這種微服務模式,一個微服務就會對應一個自已的資料庫,多表連接配接查詢的需求會大大的降低,會越來越适合這種模式。

  老傳統模式比适合大型項目,可以靈活的動态生成SQL,友善調整SQL,也有痛痛快快,洋洋灑灑的寫SQL的感覺。