SpringBoot集成Mybatis+xml格式的sql配置文件操作
作者:hzoboy 发布时间:2022-12-05 13:14:12
标签:SpringBoot,Mybatis,xml,sql
SpringBoot集成Mybatis+xml格式的sql配置文件
最近一直在研究SpringBoot技术,由于项目需要,必须使用Mybatis持久化数据。所以就用SpringBoot集成Mybatis。
由于项目使用的是xml配置文件格式的SQL管理,所以SpringBoot必须配置Mybatis文件。但这样做的话又与SpringBoot的零xml配置冲突。
所以索性使用java类来配置Mybatis。
下面是Mybatis的配置类:
import java.util.Properties;
import javax.sql.DataSource;
import org.apache.ibatis.plugin.Interceptor;
import org.apache.ibatis.session.SqlSessionFactory;
import org.mybatis.spring.SqlSessionFactoryBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.core.io.support.ResourcePatternResolver;
import com.github.pagehelper.PageHelper;
import tk.mybatis.spring.mapper.MapperScannerConfigurer;
/**
* Mybatis & Mapper & PageHelper 配置
*
* @file MybatisConfigurer.java
* @author zoboy
* @version 2.0.0
* @todo TODO Copyright(C), 2017 xi'an Coordinates Software Development Co.,
* Ltd.
*/
@Configuration
public class MybatisConfigurer {
static final String ALIASESPACKAG="com.cictec.cloud.bus.middleware.dc.common.biz.entity";
static final String MAPPERXMLPATH="classpath:sqlmapper/*.xml";
static final String BASEPACKAGE="com.cictec.cloud.bus.middleware.dc.mapper";
static final String DATABSAENAME="POSTGRESQL";
@Bean
public SqlSessionFactory sqlSessionFactoryBean(DataSource dataSource) throws Exception {
SqlSessionFactoryBean factory = new SqlSessionFactoryBean();
factory.setDataSource(dataSource);
//实体类的包名(根据你的项目自行修改)
factory.setTypeAliasesPackage(ALIASESPACKAG);
//配置分页插件,详情请查阅官方文档
PageHelper pageHelper = new PageHelper();
Properties properties = new Properties();
properties.setProperty("pageSizeZero", "true");//分页尺寸为0时查询所有纪录不再执行分页
properties.setProperty("reasonable", "true");//页码<=0 查询第一页,页码>=总页数查询最后一页
properties.setProperty("supportMethodsArguments", "true");//支持通过 Mapper 接口参数来传递分页参数
pageHelper.setProperties(properties);
//添加插件
factory.setPlugins(new Interceptor[]{pageHelper});
//添加XML目录
ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
//*.mapper.xml的地址(根据你的项目自行修改)
factory.setMapperLocations(resolver.getResources(MAPPERXMLPATH));
return factory.getObject();
}
@Bean
public MapperScannerConfigurer mapperScannerConfigurer() {
MapperScannerConfigurer mapperScannerConfigurer = new MapperScannerConfigurer();
mapperScannerConfigurer.setSqlSessionFactoryBeanName("sqlSessionFactoryBean");
//*.mapper(*.dao)的包名(根据你的项目自行修改)
mapperScannerConfigurer.setBasePackage(BASEPACKAGE);
//配置通用Mapper,详情请查阅官方文档
Properties properties = new Properties();
//tk.mybatis.mapper.common.Mapper
properties.setProperty("mappers", "tk.mybatis.mapper.common.Mapper");
properties.setProperty("notEmpty", "false");//insert、update是否判断字符串类型!='' 即 test="str != null"表达式内是否追加 and str != ''
//使用的数据库类型名称(MySQL,Oracle,Postgresql...)
properties.setProperty("IDENTITY", DATABSAENAME);
mapperScannerConfigurer.setProperties(properties);
return mapperScannerConfigurer;
}
}
可以直接在你的项目中使用这个配置类,所要改动的地方有3处,我在代码中用注释标注了。
项目结构如下图所示:
经测试,可以正常运行。
Mybatis xml文件配置sql标准格式
1.Mapper.xml
<?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.test.dao.StrategyDao">
<resultMap id="StrategyResultMap" type="com.test.entity.Strategy">
<result property="id" column="id"/>
<result property="projectId" column="project_id"/>
<result property="strategyType" column="strategy_type"/>
<result property="strategyName" column="strategy_name"/>
<result property="alias" column="alias"/>
</resultMap>
<select id="findNameList" resultType="java.util.Map" parameterType="com.test.entity.Strategy">
SELECT DISTINCT t.strategy_name strategyName,t.alias from test_strategy t WHERE
t.project_id=#{projectId, jdbcType=INTEGER} AND t.del_status=0 AND t.strategy_type =#{strategyType}
AND (t.strategy_name LIKE concat('%',#{strategyName,jdbcType=VARCHAR},'%')
or t.alias LIKE concat('%',#{strategyName,jdbcType=VARCHAR},'%'))
</select>
</mapper>
2.Dao
@MyBatisRepository
public interface StrategyDao extends ICrudDao<Strategy, Integer> {
List<Map<String,Object>> findNameList(Strategy entity);
}
3.service
public List<Map<String, Object>> findNameList(Strategy strategy) throws Exception {
try {
return dao.findNameList(strategy);
} catch (Exception var3) {
throw new MySqlException("P2101", "数据库执行异常", var3);
}
}
-----------
public class MySqlException extends ServiceException {
public MySqlException(String errorCode, Object[] args) {
super(errorCode, args);
}
public MySqlException(String errorCode) {
super(errorCode);
}
public MySqlException(String errorCode, String message) {
super(errorCode, message);
}
public MySqlException(String errorCode, String message, Throwable cause) {
super(errorCode, message, cause);
}
}
4.Controller
@RequestMapping("/nameList")
public Map<String, Object> findNameList(@RequestBody Strategy strategy) throws Exception {
try {
return result(strategyService.findNameList(strategy));
} catch (Exception e) {
throw e;
}
}
-----------
public Map<String, Object> result(Object object) {
Map<String, Object> result = new HashMap();
ResultUtil.addSuccessResult(result, object);
return result;
}
-------
public class ResultUtil {
public ResultUtil() {
}
public static void addSuccessResult(Map<String, Object> resultMap, Object data) {
resultMap.put("result", "1");
resultMap.put("msg", "调用成功!");
resultMap.put("code", "200");
resultMap.put("data", data);
}
}
来源:https://blog.csdn.net/u011051912/article/details/74295172


猜你喜欢
- 目录一、Actuator简介二、与SpringBoot2.0整合 1、核心依赖Jar包2、Yml配置文件三、监控接口详解 
- 工厂接口定义/// <summary> /// 工厂接口定义 &nbs
- 讲完了inbound事件和outbound事件的传输流程, 这一小节剖析异常事件的传输流程传播异常事件简单的异常处理的场景@Override
- 把spring-boot项目按照平常的web项目一样发布到tomcat容器下一、修改打包形式在pom.xml里设置 <packagin
- JenkinsJenkins是一个开源的、可扩展的持续集成、交付、部署的基于web界面的平台。允许持续集成和持续交付项目,无论用的是什么平台
- 1.默认的静态资源目录/static/public/resources/META-INF/resources动态资源目录:/template
- 今天给大家讲讲android的目录实现方法,就像大家看到的小说目录一样,android 提供了ExpandableListView控件可以实
- 把spring-boot项目按照平常的web项目一样发布到tomcat容器下一、修改打包形式在pom.xml里设置 <packagin
- (一)单线程递归方式package com.taobao.test;import java.io.File;public class Tot
- 笔者计划为大家介绍分布式文件系统,用于存储应用的图片、word、excel、pdf等文件。在开始介绍分布式文件系统之前,为大家介绍一下使用本
- 前言Java的StringUtil.isEmpty(str)和"".equals(str)都是用来判断字符串是否为空的方
- Android设备用久了,截屏是个麻烦事。更麻烦的是通过qq传到电脑上,倒腾半天。其实用adb命令就可以截屏,然后写个pull的语句就可以拉
- SpringBoot项目中新增脱敏功能项目背景目前正在开发一个SpringBoot项目,此项目有Web端和微信小程序端。web端提供给工作人
- 需求使用 spring-boot 项目开发中,项目启动时“非常”慢的。如果每次修改代码或静态资源文件后都需要重新启动项目,这是多么痛苦的事。
- 一、SO库加载原理Java Api 提供以下两个接口加载一个 so 库System. loadLibrary (String libName
- 本文记录刚接触Android开发搭建环境后新建工程各种可能的报错,并亲身经历漫长的解决过程(╥╯^╰╥),寻找各种偏方,避免大家采坑,希望能
- 简介AppCDS的全称是Application Class-Data Sharing。主要是用来在不同的JVM中共享Class-Data信息
- 工厂方法模式定义: Define an interface for creating an object, but let subclass
- 一、Druid简介Druid是阿里开源的数据库连接池,作为后起之秀,性能比dbcp、c3p0更高,使用也越来越广泛。当然Druid不仅仅是一
- 前言Handler,可谓是面试题中的一个霸主了。在我《面试回忆录》中,几乎没有哪家公司,在面试的时候是不问这个问题的。简单一点,问问使用流程