myBatis应用
最近项目中使用myBatis(iBatis),所以目前对所遇的一些问题及有些模糊的地方在这里标注一下。
首先mybaits是一个“半自动化”的ORM框架。
需要使用的jar包:mybatis-3.0.2.jar(mybatis核心包),mybatis-spring-1.0.0.jar(与spring结合jar包)这些jar可以去官网下载。
配置文件:
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
- "http://mybatis.org/dtd/mybatis-3-config.dtd">
- <configuration>
- <settings>
- <!-- 对在此配置文件下的所有cache进行全局性开/关设置 true|false true -->
- <setting name="cacheEnabled" value="true"/>
- <!-- 全局性设置懒加载。如果设为‘关',则所有相关联的都会被初始化加载。 -->
- <setting name="lazyLoadingEnabled" value="false"/>
- <!-- 当设置为‘开’的时候,懒加载的对象可能被任何懒属性全部加载。否则,每个属性都按需加载。 -->
- <setting name="aggressiveLazyLoading" value="true"/>
- <!-- 允许和不允许单条语句返回多个数据集(取决于驱动需求) -->
- <setting name="multipleResultSetsEnabled" value="true"/>
- <!-- 使用列标签代替列名称。不用的驱动器有不同的作法。 -->
- <setting name="useColumnLabel" value="true"/>
- <!-- 允许JDBC生成主键。需要驱动器支持.如果设为了true,这个设置将强制使用被生成的主键,
- 有一些驱动器不兼容不过仍然可以执行。 -->
- <setting name="useGeneratedKeys" value="true"/>
- <!-- 指定MyBatis是否并且如何来自动映射数据表字段与对象的属性。PARTIAL将只自动映射简单的,NONE没有嵌套的结果。
- FULL将自动映射所有复杂的结果。 -->
- <setting name="autoMappingBehavior" value="PARTIAL"/>
- <!-- 配置和设定执行器,SIMPLE执行器执行其它语句。REUSE执行器可能重复使用preparedstatements语句,BATCH执行器可以重复执行语句和批量更新。 -->
- <setting name="defaultExecutorType" value="SIMPLE"/>
- <!-- 设置一个时限,以决定让驱动器等待数据库回应的多长时间为超时. 正整数 -->
- <setting name="defaultStatementTimeout" value="25000"/>
- </settings>
- <!-- 类型别名 -->
- <typeAliases>
- <typeAlias type="com.igit.storage.client.model.ClientRelation" alias="ClientRelation"/>
- </typeAliases>
- <!-- 分页查询拦截器
- <plugins>
- <plugin interceptor="com.igit.storage.util.DiclectStatementHandlerInterceptor"></plugin>
- <plugin interceptor="com.igit.storage.util.DiclectResultSetHandlerInterceptor"></plugin>
- </plugins>
- -->
- <!-- 加载映射文件 -->
- <mappers>
- <mapper resource="com/igit/storage/client/model/ClientRelation.xml"/>
- </mappers>
- </configuration>
映射文件:
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper PUBLIC
- "-//mybatis.org//DTD Mapper 3.0//EN"
- "<a href="http://mybatis.org/dtd/mybatis-3-mapper.dtd">http://mybatis.org/dtd/mybatis-3-mapper.dtd</a>">
- <!-- 定义命名空间 -->
- <mapper namespace="com.igit.storage.client.model.ClientRelation">
- <resultMap type="ClientRelation" id="relationResult"><!-- 对象应用关联查询 -->
- <association property="client" column="clientId" javaType="Client" select="com.igit.storage.client.model.Client.selectById">
- </association>
- </resultMap>
- <insert id="insert" parameterType="ClientRelation" useGeneratedKeys="true" keyProperty="id">
- insert into S_ClientRelation(relation,clientId)
- values(#{relation},#{client.clientId})
- </insert>
- <delete id="delete" parameterType="long" flushCache="true">
- delete from S_ClientRelation where relation=#{value}
- </delete>
- <!-- flushCache="true" 清空缓存 -->
- <delete id="remove" parameterType="long" flushCache="true">
- delete from S_ClientRelation where id=#{id}
- </delete>
- <!-- 批量删除多个,参数是数组 key为array map-->
- <delete id="removeMore" parameterType="map" flushCache="true">
- delete from S_ClientRelation
- where id in
- <foreach collection="array" index="index" item="ids" open="(" separator="," close=")">
- #{ids}
- </foreach>
- </delete>
- <select id="selectById" resultMap="relationResult" parameterType="long">
- select * from S_ClientRelation where id=#{value}
- </select>
- <select id="selectByRelation" resultMap="relationResult" parameterType="long">
- select * from S_ClientRelation where relation=#{value}
- </select>
- <select id="selectByPage" resultMap="relationResult">
- select * from S_ClientRelation
- </select>
- <select id="selectByCount" resultType="long">
- select count(*) from S_ClientRelation
- </select>
- <select id="selectMaxRelation" resultType="long">
- select max(relation) from s_clientRelation
- </select>
- </mapper>
修改application.xml文件
- <!-- 因为Hibernate的TransactionManager可以向下兼容JdbcTransactionManager,所以 mybatis事务处理仍和hibernate共用-->
- <bean id="transactionManager"
- class="org.springframework.orm.hibernate3.HibernateTransactionManager">
- <property name="sessionFactory">
- <ref local="sessionFactory" />
- </property>
- </bean>
- <!-- 用注解来实现事务管理 -->
- <tx:annotation-driven transaction-manager="transactionManager"/>
- <tx:advice id="txAdvice" transaction-manager="transactionManager">
- <tx:attributes>
- <tx:method name="*" />
- </tx:attributes>
- </tx:advice>
- <!-- mybatis sqlSessionFactory 注入datasource和配置文件-->
- <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
- <property name="configLocation" value="classpath:mybatisconfig.xml" />
- <property name="dataSource" ref="dataSource" />
- </bean>
- <!-- 定义mybatis操作模板类似hibernateTemplate -->
- <bean id="sqlSessionTemplate" class="org.mybatis.spring.SqlSessionTemplate">
- <property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
- </bean>
代码实现
- package com.igit.storage.client.service.imp;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import org.apache.ibatis.session.RowBounds;
- import org.mybatis.spring.SqlSessionTemplate;
- import org.springframework.util.Assert;
- import org.springside.core.dao.Page;
- import com.igit.exception.BusinessException;
- import com.igit.storage.client.model.Client;
- import com.igit.storage.client.model.ClientRelation;
- import com.igit.storage.client.service.ClientRelationService;
- public class ClientRelationServiceImp implements ClientRelationService {
- private SqlSessionTemplate sqlSessionTemplate;
- /**
- * 新增关联客户
- */
- public void addRelationByClients(Long relation, List<Client> clients) {
- //判断该关联id是否存在
- if(!isValidRelation(relation)){
- throw new BusinessException("该关联关系不存在!");
- }
- //新增关联客户
- for(Client client : clients){
- ClientRelation cr = new ClientRelation();
- cr.setRelation(relation);
- cr.setClient(client);
- Assert.notNull(client, "客户不能为Null");
- sqlSessionTemplate.insert(ClientRelation.class.getName()+".insert", cr);
- }
- }
- /**
- * 取消关联客户
- */
- public void cancelRelation(Long relation) {
- sqlSessionTemplate.delete(ClientRelation.class.getName()+".delete", relation);
- }
- /**
- * 创建关联客户
- */
- public void createRelation(List<Client> clients) {
- // 客户是否可以创建关联
- if(clients.size()<=1){
- throw new BusinessException("无法创建关联,关联客户不能低于2个!");
- }
- ClientRelation cr = new ClientRelation();
- cr.setRelation(getMaxRelation());
- //创建关联客户
- for(Client client : clients){
- cr.setClient(client);
- Assert.notNull(client, "客户不能为Null");
- sqlSessionTemplate.insert(ClientRelation.class.getName()+".insert", cr);
- }
- }
- /**
- * 获取最大关联ID
- * @return
- */
- private Long getMaxRelation(){
- Long relation = 1L;
- Long maxRelation = (Long) sqlSessionTemplate.selectOne(ClientRelation.class.getName()+".selectMaxRelation");
- if(maxRelation==null){
- return relation;
- }
- return maxRelation+1;
- }
- /**
- * 分页获取关联客户
- */
- public Page getClientRelationByPage(int startIndex, int pageSize) {
- List<ClientRelation> list = sqlSessionTemplate.selectList(ClientRelation.class.getName()+".selectByPage", new RowBounds(startIndex,pageSize));
- Long totalCount = (Long) sqlSessionTemplate.selectOne(ClientRelation.class.getName()+".selectByCount");
- return new Page(list,totalCount,pageSize,startIndex);
- }
- /**
- * 获取没有关联的客户列表
- */
- public Page getNoRelationClients(int startIndex,int pageSize) {
- List<Client> list = sqlSessionTemplate.selectList(Client.class.getName()+".selectSingleClient", new RowBounds(startIndex,pageSize));
- Long totalCount = (Long) sqlSessionTemplate.selectOne(Client.class.getName()+".selectSingleCount");
- return new Page(list,totalCount,pageSize,startIndex);
- }
- /**
- * 删除关联客户
- */
- public void removeRelationByClients(Long relation, List<Client> clients) {
- //1.该客户是否可以从关联中移除
- List<ClientRelation> list = getRelationClients(relation);
- if((list.size()-clients.size())<=1){
- throw new BusinessException("不允许删除,关联客户至少存在2个!");
- }
- //2.移除客户
- for(Client c : clients){
- Map<String,Long> params = new HashMap<String,Long>();
- params.put("relation", relation);
- params.put("clientId", c.getClientId());
- sqlSessionTemplate.delete(ClientRelation.class.getName()+".remove", params);
- }
- }
- private boolean isValidRelation(Long relation) {
- List<ClientRelation> list = getRelationClients(relation);
- if(list.size()<=1){
- return false;
- }
- return true;
- }
- private List<ClientRelation> getRelationClients(Long relation) {
- List<ClientRelation> list = sqlSessionTemplate.selectList(ClientRelation.class.getName()+".selectByRelation", relation);
- return list;
- }
- public SqlSessionTemplate getSqlSessionTemplate() {
- return sqlSessionTemplate;
- }
- public void setSqlSessionTemplate(SqlSessionTemplate sqlSessionTemplate) {
- this.sqlSessionTemplate = sqlSessionTemplate;
- }
- }
myBatis应用的更多相关文章
- 【分享】标准springMVC+mybatis项目maven搭建最精简教程
文章由来:公司有个实习同学需要做毕业设计,不会搭建环境,我就代劳了,顺便分享给刚入门的小伙伴,我是自学的JAVA,所以我懂的.... (大图直接观看显示很模糊,请在图片上点击右键然后在新窗口打开看) ...
- Java MyBatis 插入数据库返回主键
最近在搞一个电商系统中由于业务需求,需要在插入一条产品信息后返回产品Id,刚开始遇到一些坑,这里做下笔记,以防今后忘记. 类似下面这段代码一样获取插入后的主键 User user = new User ...
- [原创]mybatis中整合ehcache缓存框架的使用
mybatis整合ehcache缓存框架的使用 mybaits的二级缓存是mapper范围级别,除了在SqlMapConfig.xml设置二级缓存的总开关,还要在具体的mapper.xml中开启二级缓 ...
- 【SSM框架】Spring + Springmvc + Mybatis 基本框架搭建集成教程
本文将讲解SSM框架的基本搭建集成,并有一个简单demo案例 说明:1.本文暂未使用maven集成,jar包需要手动导入. 2.本文为基础教程,大神切勿见笑. 3.如果对您学习有帮助,欢迎各种转载,注 ...
- mybatis plugins实现项目【全局】读写分离
在之前的文章中讲述过数据库主从同步和通过注解来为部分方法切换数据源实现读写分离 注解实现读写分离: http://www.cnblogs.com/xiaochangwei/p/4961807.html ...
- MyBatis基础入门--知识点总结
对原生态jdbc程序的问题总结 下面是一个传统的jdbc连接oracle数据库的标准代码: public static void main(String[] args) throws Exceptio ...
- Mybatis XML配置
Mybatis常用带有禁用缓存的XML配置 <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE ...
- MyBatis源码分析(一)开篇
源码学习的好处不用多说,Mybatis源码量少.逻辑简单,将写个系列文章来学习. SqlSession Mybatis的使用入口位于org.apache.ibatis.session包中的SqlSes ...
- (整理)MyBatis入门教程(一)
本文转载: http://www.cnblogs.com/hellokitty1/p/5216025.html#3591383 本人文笔不行,根据上面博客内容引导,自己整理了一些东西 首先给大家推荐几 ...
- MyBatis6:MyBatis集成Spring事物管理(下篇)
前言 前一篇文章<MyBatis5:MyBatis集成Spring事物管理(上篇)>复习了MyBatis的基本使用以及使用Spring管理MyBatis的事物的做法,本文的目的是在这个的基 ...
随机推荐
- c++ 继承 虚函数与多态性 重载 覆盖 隐藏
http://blog.csdn.net/lushujun2011/article/details/6827555 2011.9.27 1) 定义一个对象时,就调用了构造函数.如果一个类中没有定义任何 ...
- InnoDB引擎的索引和存储结构
在Oracle 和SQL Server等数据库中只有一种存储引擎,所有数据存储管理机制都是一样的.而MySql数据库提供了多种存储引擎.用户可以根据不同的需求为数据表选择不同的存储引擎,用户也可以根据 ...
- 使用show profiles分析SQL性能
如何查看执行SQL的耗时 使用show profiles分析sql性能. Show profiles是5.0.37之后添加的,要想使用此功能,要确保版本在5.0.37之后. 查看数据库版本 mysql ...
- hdu 1756 判断点在多边形内 *
模板题 #include<cstdio> #include<iostream> #include<algorithm> #include<cstring> ...
- 深入理解 KVC\KVO 实现机制 — KVC
KVC和KVO都属于键值编程而且底层实现机制都是isa-swizzing,所以本来想放在一起讲的.但是篇幅有限所以就分成了两篇博文 KVO实现机制传送门 KVC概述 KVC是Key Value Cod ...
- Java运算符优先级(转)
转自:http://www.cnblogs.com/gw811/archive/2012/10/13/2722752.html Java运算符优先级 序列号 符号 名称 结合性(与操作数) 目数 说明 ...
- 利用PowerDesigner比较2个数据库结构
主要实现思路 建立新旧数据库ODBC 导入原始数据模型 选择并比较对象 .PowerDesigner中可以对2个数据模型进行比较,所以想到用这个功能来实现对比数据库的目的.到底怎样利用PowerDes ...
- 【转】kylin优化
转自: http://www.bitstech.net/2016/01/04/kylin-olap/ http://www.csdn.net/article/2015-11-27/2826343 ht ...
- lr_save_var字符串截取总结
函数作用: 将一个变化长度的字符串保存到parameter中. 用法实例: 此处讲解函数: Action() { web_save_timestamp_param("tStamp&q ...
- JAVA项目JDK版本修改
1.添加JDK window-----> preferences 2.设置默认JDK版本 3.在项目上右键------>Properties