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的事物的做法,本文的目的是在这个的基 ...
随机推荐
- css3学习总结9--CSS3过渡
CSS3 过渡 通过 CSS3,我们可以在不使用 Flash 动画或 JavaScript 的情况下,当元素从一种样式变换为另一种样式时为元素添加效果. 过渡属性 属性 描述 CSS transiti ...
- JQuery的AJAX封装加例子
将json字符串转换为javascript对象有两种方法:var strs = eval("(" + data + ")");var strs = $.pars ...
- export 解决环境变量的问题!!!!
export PATH="/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/root/bin" 如果/et ...
- oracle sql developer数据表注释为乱码问题---解决
参考网址:http://blog.163.com/jackie_howe/blog/static/19949134720121126879265/ 内容: 在windows中创建一个名为“NLS_LA ...
- js event 2
js event 2 浏览器兼容 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" " ...
- poj 3928 树状数组
题目中只n个人,每个人有一个ID和一个技能值,一场比赛需要两个选手和一个裁判,只有当裁判的ID和技能值都在两个选手之间的时候才能进行一场比赛,现在问一共能组织多少场比赛. 由于排完序之后,先插入的一定 ...
- OracleDBConsoleorcl是具体管什么的服务(转)
这个服务是oracle EM的就是oracle企业管理器这个工具可以通过网页的方式监控数据库,对数据库参数等做修改.里面还有oracle本身对于当前系统内存,SQL,参数等的建议.DBA可以根绝这些建 ...
- 51 NOD 1685 第K大区间2 二分+BIT
题目描述: 定义一个长度为奇数的区间的值为其所包含的的元素的中位数. 现给出n个数,求将所有长度为奇数的区间的值排序后,第K大的值为多少. 样例解释: [l,r]表示区间的值 [1]:3 [2]:1 ...
- 电赛总结(二)——AD之STM32F102ZE单片机自带12位AD
直接上程序即可 #ifndef __ADC_H #define __ADC_H #include "stm32f10x.h" #include "LCD3.2.h&quo ...
- kali实用链接
1.Kali-linux安装之后的简单设置 :http://xiao106347.blog.163.com/blog/static/215992078201342410347137/ 2.kali文 ...