最近一直在學springboot和Cloud,互聯網公司如今也更傾向於微服務這一塊,前景是一篇光明的,特別是在springboot上開發的Cloud的部分,是一套分佈式的總體解決方案,學好這一塊至少這幾年都很吃香;java
既然學習好久,落地實踐一下爲好;git
項目git網址:https://github.com/David-BIQI/manage.git(項目使用比較新的springboot2.0 還有jdk8 )github
參照的代碼規範:https://github.com/xwjie/PLMCodeTemplate.git (這個是一套可以落地的代碼規範,跟着風哥學習不少)spring
項目已經初始化,鏈接數據庫了,配置mybatis tk框架,加上分頁插件<有空還要鏈接一下mybatis的原理,還有分頁的實現原理>sql
application.yml下 mybatis配置:數據庫
# mybatis包的掃描,還有就是映射文件設置 mybatis tk插件的使用 mybatis: type-aliases-package: package com.biqi.model mapper-locations: classpath:mapper/*.xml #配置駝峯下劃線 configuration: map-underscore-to-camel-case: true
pom中的架包:apache
<!--mybatis tk框架--> <dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper-spring-boot-starter</artifactId> <version>1.2.4</version> </dependency> <!---分頁插件--> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.3</version> </dependency> <!---mybatis tk框架-->
tk實現的例子:springboot
一、定義一個接口mybatis
package com.common.mybatis; import tk.mybatis.mapper.common.Mapper; import tk.mybatis.mapper.common.MySqlMapper; /** * Description: 實現增刪改查的基本sql功能 * @Package com.common.mybatis * @author xiebq @date 2018年6月7日 上午9:53:34 */ public interface MyMapper<T> extends Mapper<T>, MySqlMapper<T> { //FIXME 特別注意,該接口不能被掃描到,不然會出錯 }
dao繼承接口app
package com.biqi.dao; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; import com.biqi.model.User; import com.common.mybatis.MyMapper; /** * @Package com.biqi.dao * @author xiebq @date 2018年6月7日 上午9:55:30 */ @Mapper public interface UserDao extends MyMapper<User> { /** * 測試數據庫鏈接 * @return */ @Select("SELECT count(*) FROM User ") Integer countUser(); int countUser2(); }
具體使用
public User getUserByid(Integer id) { User user = userDao.selectByPrimaryKey(id); return user; } public Integer saveUser(User user) { user.setId(null); user.setCreateby(SuperUserId); user.setCreated(new Date()); userDao.insertUseGeneratedKeys(user); return user.getId(); } public Boolean deleteUser(Integer id) { User oldUser = userDao.selectByPrimaryKey(id); notNull(oldUser, "用戶id:"+id+" 不存在"); userDao.deleteByPrimaryKey(id); return true; }
分頁的例子:
public PageDto<User> listPage(Integer page, Integer size) { //tk mybatis進行查詢 Example example = new Example(User.class); //分頁查詢 PageHelper.startPage(page, size); //添加查詢條件 //example.createCriteria().andEqualTo("id",XX); example.orderBy("created").desc(); List<User> list = userDao.selectByExample(example); //分頁查詢-->若凡在這裏,不能進行分頁 PageHelper.startPage(page, size); PageInfo<User> pageInfo = new PageInfo<User>(list); return new PageDto<>(list, pageInfo.getTotal()); }
xml文件<不喜歡在接口中寫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.biqi.dao.UserDao"> <select id="countUser2" resultType="java.lang.Integer"> SELECT count(*) FROM User </select> </mapper>
以上這些步驟作好單表的增刪改查,以及分頁基本完成。如下是tk可以完成如下的查詢,