Spring Boot一步步整合Mybatis框架

在这篇文章(http://www.jianshu.com/p/483841e4b7d5)中创建的spring boot项目基础上,进行mybatis整合。

1、引入相关依赖包:

 <!-- 连接MySQL数据库 -->
 <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
</dependency>

<!-- mybatis相关包 -->
 <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-spring -->
<dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis-spring</artifactId>
    <version>1.3.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
<dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis</artifactId>
    <version>3.4.3</version>
</dependency>

<!-- Spring对JDBC数据访问进行封装的所有类 -->
<!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
</dependency>

<!-- 数据库连接池相关 -->
<!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>druid</artifactId>
    <version>1.1.1</version>
</dependency>

<!-- 支持 @ConfigurationProperties 注解 -->  
<dependency>  
    <groupId>org.springframework.boot</groupId>  
    <artifactId>spring-boot-configuration-processor</artifactId>  
    <optional>true</optional>  
</dependency>

2、在application.yml中spring节点下添加数据库配置:

spring: 
  datasource:
    driverClassName: com.mysql.jdbc.Driver
    username: root
    password: beibei
    url: jdbc:mysql://123.207.188.73:3306/beibeiDoc?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false
    initialSize: 5
    minIdle: 5
    maxActive: 30
    maxWait: 60000
    showsql: true

注意:如果是版本号比较高的数据库,url后面一定要加上 useSSL=false

3、创建DBProperties.java类,用来读取数据库配置:

package com.beibei.doc.config.properties;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

/**
 * 数据库配置
 * @author beibei
 *
 */
@Component // 必须要有这个注解,否则无法在其他地方自动注入
@ConfigurationProperties(prefix="spring.datasource")//此处表示只读取application.yml中spring下面的datasource下面的属性
public class DBProperties {

//各个属性名称和application.yml中spring.datasource下面的各个属性key一一对应
private String driverClassName;
private String url;
private String username;
private String password;
private String initialSize;
private String minIdle;
private String maxActive;
private String maxWait;
private String showsql;
//为了节省篇幅,此处略去getter、setter方法
}

4、创建DataBaseConfig.java类,以配置数据库连接池、事务管理、
加载mapper.xml文件等,要注意各种注解的使用,类名随意。

package com.beibei.doc.config;

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.Executor;

import javax.sql.DataSource;

import org.apache.ibatis.session.SqlSessionFactory;
import org.mybatis.spring.SqlSessionFactoryBean;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.aop.interceptor.AsyncUncaughtExceptionHandler;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.scheduling.annotation.AsyncConfigurerSupport;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
import org.springframework.transaction.PlatformTransactionManager;
import org.springframework.transaction.annotation.EnableTransactionManagement;

import com.alibaba.druid.filter.Filter;
import com.alibaba.druid.pool.DruidDataSource;
import com.alibaba.druid.wall.WallConfig;
import com.alibaba.druid.wall.WallFilter;
import com.beibei.doc.config.properties.DBProperties;


/**
 * 
 * @author beibei
 *
 */
@Configuration
@ComponentScan({
"com.beibei.doc.*.controller",
"com.beibei.doc.*.service"
})
@MapperScan({"com.beibei.doc.dao.*","com.beibei.doc.dao.*.ext"}) //dao层类所在包
@EnableTransactionManagement
@EnableScheduling
@EnableAsync
public class DataBaseConfig {

/**自动注入数据库配置类*/
@Autowired 
private DBProperties db;

/**
 * 构建数据源
 * @return
 */
@Bean
public DataSource dataSource() {
    DruidDataSource dataSource = new DruidDataSource();
    dataSource.setDriverClassName(db.getDriverClassName());
    dataSource.setUrl(db.getUrl());
    dataSource.setUsername(db.getUsername());
    dataSource.setPassword(db.getPassword());
    // 配置初始化大小、最小、最大
    dataSource.setInitialSize(Integer.valueOf(db.getInitialSize()));
    dataSource.setMinIdle(Integer.valueOf(db.getMinIdle()));
    dataSource.setMaxActive(Integer.valueOf(db.getMaxActive()));
    // 配置获取连接等待超时的时间
    dataSource.setMaxWait(Long.valueOf(db.getMaxWait()));
    //配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
    dataSource.setTimeBetweenEvictionRunsMillis(60000);
    //配置一个连接在池中最小生存的时间,单位是毫秒
    dataSource.setMinEvictableIdleTimeMillis(300000);

    //打开PSCache,并且指定每个连接上PSCache的大小
    //dataSource.setPoolPreparedStatements(true);
    //dataSource.setMaxPoolPreparedStatementPerConnectionSize(20);
    //禁用对于长时间不使用的连接强制关闭的功能
    dataSource.setRemoveAbandoned(false);
    
    try {
        WallConfig wc=new WallConfig();
        wc.setMultiStatementAllow(true);
        WallFilter wf=new WallFilter();
        wf.setConfig(wc);
        List<Filter> filters = new ArrayList<>();
        filters.add(wf);
        dataSource.setFilters("stat,wall");
        dataSource.setProxyFilters(filters);
    } catch (Exception e) {
        e.printStackTrace();
    }

    return dataSource;
}

@Bean
public PlatformTransactionManager transactionManager() {
    return new DataSourceTransactionManager(dataSource());
}

@Bean
public SqlSessionFactory sqlSessionFactory(){
    SqlSessionFactory factory = null;
    try {
        SqlSessionFactoryBean sessionFactoryBean = new SqlSessionFactoryBean();
        sessionFactoryBean.setDataSource(dataSource());
        
        //读取mybatis各个类的 *mapper.xml文件,这个地方的locationPattern一定要写对,不然会找不到输出到target\classes\mybatis\*目录下的mapper.xml文件
        String locationPattern = "classpath*:/mybatis/*/*.xml";
        PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
        Resource[] resources = resolver.getResources(locationPattern);
        List<Resource> filterResourceList = new ArrayList<Resource>();
        List<String> fileNameList = new ArrayList<String>();
        for (int i=0; i<resources.length; i++){
            Resource resource = resources[i];
            if(!fileNameList.contains(resource.getFilename())){
                filterResourceList.add(resource);
                fileNameList.add(resource.getFilename());
            }
        }

        Resource[] result = new Resource[filterResourceList.size()];
        sessionFactoryBean.setMapperLocations(filterResourceList.toArray(result));

        factory = (SqlSessionFactory) sessionFactoryBean.getObject();
    } catch (Exception e) {
        e.printStackTrace();
    }
    return  factory;
}

@Bean
public AsyncConfigurerSupport configurerSupport(){
    return new AsyncConfigurerSupport(){
        @Override
        public Executor getAsyncExecutor() {
            ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
            executor.setCorePoolSize(10);
            executor.setMaxPoolSize(20);
            executor.setQueueCapacity(50000);
            executor.setThreadNamePrefix("DocThreadPool");
            executor.initialize();
            return executor;

        }

        @Override
        public AsyncUncaughtExceptionHandler getAsyncUncaughtExceptionHandler() {
            return super.getAsyncUncaughtExceptionHandler();
        }
    };
}
}

5、创建一张数据库表

CREATE TABLE `user` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  `username` varchar(20) DEFAULT NULL COMMENT '用户名',
  `password` varchar(100) DEFAULT NULL COMMENT '密码',
  `age` int(3) DEFAULT NULL COMMENT '年龄',
  `sex` varchar(1) DEFAULT NULL COMMENT '性别',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

插入一条数据

Paste_Image.png

6、用相关工具生成该表对应的User.java类,UserExample.java类以及UserMapper.xml文件。这些文件放置目录如下图:

其中UserMapper.xml生成后记得要把其命名空间改成UserMapper.java的类全名称,
其中引用到User.java、UserExample.java也要使用全名称:

Paste_Image.png

7、创建BaseMapper.java类,该类中各个方法名称和mapper.xml中各个select的id相同:

package com.beibei.doc.dao.base;

import java.util.List;
import org.apache.ibatis.annotations.Param;

/**
 * dao层基类
 * @author beibei
 *
 * @param <M> 实体类
 * @param <E> 实体类对应的mapper
 */
public interface BaseMapper<M, E> {

public int countByExample(E example);

public int deleteByExample(E example);

public int deleteByPrimaryKey(Integer id);

public int insert(M record);

public int insertSelective(M record);

public List<M> selectByExample(E example);

public M selectByPrimaryKey(Integer id);

public int updateByExampleSelective(@Param("record") M record, @Param("example") E example);

public int updateByExample(@Param("record") M record, @Param("example") E example);

public int updateByPrimaryKeySelective(M record);

public int updateByPrimaryKey(M record);
}

创建UserMapper.java继承BaseMapper.java。(因为两个类都是接口)

package com.beibei.doc.dao.user;

import com.beibei.doc.dao.base.BaseMapper;
import com.beibei.doc.model.user.User;
import com.beibei.doc.model.user.UserExample;

public interface UserMapper extends BaseMapper<User, UserExample> {

}

8、构建service层基类:

创建BaseService.java接口文件

package com.beibei.doc.service.base;
import java.util.List;

/**
 * service基类实现类
 * @author beibei 
 *
 * @param <M>  实体类
 * @param <E>  对应的mapper类
 */
public interface BaseService<M, E> {

/**
 * 通过id获取数据
 * @param id
 * @return
 * @throws RuntimeException
 */
public M selectByPrimaryKey(Integer id) throws RuntimeException;

/**
 * 根据Example类进行查询
 * @param example
 * @return
 * @throws RuntimeException
 */
public List<M> selectByExample(E example) throws RuntimeException;

/**
 * 根据主键删除
 * @param id
 * @throws RuntimeException
 */
public int deleteByPrimaryKey(Integer id) throws RuntimeException;

/**
 * 根据Example类进行删除
 * @param example
 * @throws RuntimeException
 */
public int deleteByExample(E example) throws RuntimeException;

/**
 * 插入数据(全值)
 * @param model
 * @throws RuntimeException
 */
public int insert(M model) throws RuntimeException;

/**
 * 插入数据(非空值)
 * @param model
 * @throws Exception
 */
public int insertSelective(M model) throws Exception;

/**
 * 根据Example类查询数量
 * @param k
 * @return
 * @throws RuntimeException
 */
public Integer countByExample(E example) throws RuntimeException;

/**
 */
public int updateByExampleSelective(M model, E example) throws RuntimeException;

/**
 * 根据Example类更新对象
 * @param model 更新模版
 * @param example Example类
 * @throws RuntimeException
 */
public int updateByExample(M model, E example) throws RuntimeException;

/**
 * 根据主键更新对象(非空)
 * @param model
 * @throws RuntimeException
 */
public int updateByPrimaryKeySelective(M model) throws RuntimeException;

/**
 * 根据主键更新对象
 * @param model
 * @throws RuntimeException
 */
public int updateByPrimaryKey(M model) throws RuntimeException;
}

创建实现类BaseServiceImpl.java

package com.beibei.doc.service.base.impl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;

import com.beibei.doc.dao.base.BaseMapper;
import com.beibei.doc.service.base.BaseService;

/**
 * service层基类
 * @author beibei
 *
 * @param <M>
 * @param <E>
 */
public class BaseServiceImpl<M, E> implements BaseService<M, E> {

@Autowired
protected BaseMapper<M, E> baseMapper;

@Transactional(readOnly = true)
public M selectByPrimaryKey(Integer id) throws RuntimeException {
    return baseMapper.selectByPrimaryKey(id);
}

@Transactional(readOnly = true)
public List<M> selectByExample(E example) throws RuntimeException {
    return baseMapper.selectByExample(example);
}

public int deleteByPrimaryKey(Integer id) throws RuntimeException {
    return baseMapper.deleteByPrimaryKey(id);
}

public int deleteByExample(E example) throws RuntimeException {
    return baseMapper.deleteByExample(example);
}

public int insert(M model) throws RuntimeException {
    return baseMapper.insert(model);
}

public int insertSelective(M model) throws RuntimeException {
    return baseMapper.insertSelective(model);
}

public Integer countByExample(E example) throws RuntimeException {
    return baseMapper.countByExample(example);
}

public int updateByExampleSelective(M model, E example) throws RuntimeException {
    return baseMapper.updateByExampleSelective(model, example);
}

public int updateByExample(M model, E example) throws RuntimeException {
    return baseMapper.updateByExample(model, example);
}

public int updateByPrimaryKeySelective(M model) throws RuntimeException {
    return baseMapper.updateByPrimaryKeySelective(model);
}

public int updateByPrimaryKey(M model) throws RuntimeException {
    return  baseMapper.updateByPrimaryKey(model);
}
}

这两个类是提取了公共方法的基类,和BaseMapper.java中各个方法一致。

9、创建Service层各个实体类对应的Service类,下面是分别创建UserService.java接口和其实现类UserServiceImpl.java。

UserService.java

package com.beibei.doc.service.user;

import com.beibei.doc.model.user.User;
import com.beibei.doc.model.user.UserExample;
import com.beibei.doc.service.base.BaseService;

public interface UserService extends BaseService<User, UserExample> {

}

UserServiceImpl.java

package com.beibei.doc.service.user.impl;

import org.springframework.stereotype.Service;

import com.beibei.doc.model.user.User;
import com.beibei.doc.model.user.UserExample;
import com.beibei.doc.service.base.impl.BaseServiceImpl;
import com.beibei.doc.service.user.UserService;

@Service
public class UserServiceImpl extends BaseServiceImpl<User, UserExample> implements UserService {

}

这样子UserService就有了基础的增删改查方法了,如果需要添加其他业务操作方法,就直接在UserService.java中添加接口,并且在UserServiceImpl.java中实现就可以了。

10、在HelloController.java中编辑接口代码,调用service层业务方法:

package com.beibei.doc.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;

import com.beibei.doc.model.user.User;
import com.beibei.doc.service.user.UserService;

@RestController
@RequestMapping("/hello")
public class HelloConrtoller {

@Autowired
private UserService userService;

@RequestMapping(value="/say")
public String say(){
    User user = userService.selectByPrimaryKey(1);
    if(user == null){
        return null;
    }
    return user.getUsername() + ", 年龄=" + user.getAge();
}
}

11、在浏览器中输入路径访问,结果如下:

Paste_Image.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,185评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,445评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,684评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,564评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,681评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,874评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,025评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,761评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,217评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,545评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,694评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,351评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,988评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,778评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,007评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,427评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,580评论 2 349

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,633评论 18 139
  • 1. Java基础部分 基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语...
    子非鱼_t_阅读 31,598评论 18 399
  • 使用SSM(Spring、SpringMVC和Mybatis)已经有三个多月了,项目在技术上已经没有什么难点了,基...
    mingli_jianshu1阅读 3,579评论 0 29
  • 珍惜你所拥有的每一样东西,你会发现,幸福简单得让你无法置信。——题记 因为工作原因,三周时间未回家。前几天,和...
    6f6d20502a42阅读 549评论 0 2
  • 背景 阅读开源库的一大好处就是不仅可以了解功能实现的逻辑,而且对于某些实现代码,经常给人醍醐灌顶的感受。Threa...
    Whyn阅读 517评论 0 0