123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422 |
- /**
- * Copyright (c) 2011-2016, hubin (jobob@qq.com).
- * <p>
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- * <p>
- * http://www.apache.org/licenses/LICENSE-2.0
- * <p>
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
- package com.baomidou.mybatisplus.service.impl;
- import java.io.Serializable;
- import java.util.List;
- import java.util.Map;
- import org.apache.ibatis.binding.MapperMethod;
- import org.apache.ibatis.logging.Log;
- import org.apache.ibatis.logging.LogFactory;
- import org.apache.ibatis.session.SqlSession;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.transaction.annotation.Transactional;
- import com.baomidou.mybatisplus.entity.TableInfo;
- import com.baomidou.mybatisplus.enums.SqlMethod;
- import com.baomidou.mybatisplus.exceptions.MybatisPlusException;
- import com.baomidou.mybatisplus.mapper.BaseMapper;
- import com.baomidou.mybatisplus.mapper.Condition;
- import com.baomidou.mybatisplus.mapper.SqlHelper;
- import com.baomidou.mybatisplus.mapper.Wrapper;
- import com.baomidou.mybatisplus.plugins.Page;
- import com.baomidou.mybatisplus.service.IService;
- import com.baomidou.mybatisplus.toolkit.CollectionUtils;
- import com.baomidou.mybatisplus.toolkit.MapUtils;
- import com.baomidou.mybatisplus.toolkit.ReflectionKit;
- import com.baomidou.mybatisplus.toolkit.StringUtils;
- import com.baomidou.mybatisplus.toolkit.TableInfoHelper;
- /**
- * <p>
- * IService 实现类( 泛型:M 是 mapper 对象,T 是实体 , PK 是主键泛型 )
- * </p>
- *
- * @author hubin
- * @Date 2016-04-20
- */
- public class ServiceImpl<M extends BaseMapper<T>, T> implements IService<T> {
- private static final Log logger = LogFactory.getLog(ServiceImpl.class);
- @Autowired
- protected M baseMapper;
- /**
- * <p>
- * 判断数据库操作是否成功
- * </p>
- * <p>
- * 注意!! 该方法为 Integer 判断,不可传入 int 基本类型
- * </p>
- *
- * @param result 数据库操作返回影响条数
- * @return boolean
- */
- protected static boolean retBool(Integer result) {
- return SqlHelper.retBool(result);
- }
- @SuppressWarnings("unchecked")
- protected Class<T> currentModelClass() {
- return ReflectionKit.getSuperClassGenricType(getClass(), 1);
- }
- /**
- * <p>
- * 批量操作 SqlSession
- * </p>
- */
- protected SqlSession sqlSessionBatch() {
- return SqlHelper.sqlSessionBatch(currentModelClass());
- }
- /**
- * 获取SqlStatement
- *
- * @param sqlMethod
- * @return
- */
- protected String sqlStatement(SqlMethod sqlMethod) {
- return SqlHelper.table(currentModelClass()).getSqlStatement(sqlMethod.getMethod());
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean insert(T entity) {
- return retBool(baseMapper.insert(entity));
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean insertAllColumn(T entity) {
- return retBool(baseMapper.insertAllColumn(entity));
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean insertBatch(List<T> entityList) {
- return insertBatch(entityList, 30);
- }
- /**
- * 批量插入
- *
- * @param entityList
- * @param batchSize
- * @return
- */
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean insertBatch(List<T> entityList, int batchSize) {
- if (CollectionUtils.isEmpty(entityList)) {
- throw new IllegalArgumentException("Error: entityList must not be empty");
- }
- try (SqlSession batchSqlSession = sqlSessionBatch()) {
- int size = entityList.size();
- String sqlStatement = sqlStatement(SqlMethod.INSERT_ONE);
- for (int i = 0; i < size; i++) {
- batchSqlSession.insert(sqlStatement, entityList.get(i));
- if (i >= 1 && i % batchSize == 0) {
- batchSqlSession.flushStatements();
- }
- }
- batchSqlSession.flushStatements();
- } catch (Throwable e) {
- throw new MybatisPlusException("Error: Cannot execute insertBatch Method. Cause", e);
- }
- return true;
- }
- /**
- * <p>
- * TableId 注解存在更新记录,否插入一条记录
- * </p>
- *
- * @param entity 实体对象
- * @return boolean
- */
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean insertOrUpdate(T entity) {
- if (null != entity) {
- Class<?> cls = entity.getClass();
- TableInfo tableInfo = TableInfoHelper.getTableInfo(cls);
- if (null != tableInfo && StringUtils.isNotEmpty(tableInfo.getKeyProperty())) {
- Object idVal = ReflectionKit.getMethodValue(cls, entity, tableInfo.getKeyProperty());
- if (StringUtils.checkValNull(idVal)) {
- return insert(entity);
- } else {
- /*
- * 更新成功直接返回,失败执行插入逻辑
- */
- return updateById(entity) || insert(entity);
- }
- } else {
- throw new MybatisPlusException("Error: Can not execute. Could not find @TableId.");
- }
- }
- return false;
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean insertOrUpdateAllColumn(T entity) {
- if (null != entity) {
- Class<?> cls = entity.getClass();
- TableInfo tableInfo = TableInfoHelper.getTableInfo(cls);
- if (null != tableInfo && StringUtils.isNotEmpty(tableInfo.getKeyProperty())) {
- Object idVal = ReflectionKit.getMethodValue(cls, entity, tableInfo.getKeyProperty());
- if (StringUtils.checkValNull(idVal)) {
- return insertAllColumn(entity);
- } else {
- /*
- * 更新成功直接返回,失败执行插入逻辑
- */
- return updateAllColumnById(entity) || insertAllColumn(entity);
- }
- } else {
- throw new MybatisPlusException("Error: Can not execute. Could not find @TableId.");
- }
- }
- return false;
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean insertOrUpdateBatch(List<T> entityList) {
- return insertOrUpdateBatch(entityList, 30);
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean insertOrUpdateBatch(List<T> entityList, int batchSize) {
- return insertOrUpdateBatch(entityList, batchSize, true);
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean insertOrUpdateAllColumnBatch(List<T> entityList) {
- return insertOrUpdateBatch(entityList, 30, false);
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean insertOrUpdateAllColumnBatch(List<T> entityList, int batchSize) {
- return insertOrUpdateBatch(entityList, batchSize, false);
- }
- /**
- * 批量插入修改
- *
- * @param entityList 实体对象列表
- * @param batchSize 批量刷新个数
- * @param selective 是否滤掉空字段
- * @return boolean
- */
- private boolean insertOrUpdateBatch(List<T> entityList, int batchSize, boolean selective) {
- if (CollectionUtils.isEmpty(entityList)) {
- throw new IllegalArgumentException("Error: entityList must not be empty");
- }
- try (SqlSession batchSqlSession = sqlSessionBatch()) {
- int size = entityList.size();
- for (int i = 0; i < size; i++) {
- if (selective) {
- insertOrUpdate(entityList.get(i));
- } else {
- insertOrUpdateAllColumn(entityList.get(i));
- }
- if (i >= 1 && i % batchSize == 0) {
- batchSqlSession.flushStatements();
- }
- }
- batchSqlSession.flushStatements();
- } catch (Throwable e) {
- throw new MybatisPlusException("Error: Cannot execute insertOrUpdateBatch Method. Cause", e);
- }
- return true;
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean deleteById(Serializable id) {
- return retBool(baseMapper.deleteById(id));
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean deleteByMap(Map<String, Object> columnMap) {
- if (MapUtils.isEmpty(columnMap)) {
- throw new MybatisPlusException("deleteByMap columnMap is empty.");
- }
- return retBool(baseMapper.deleteByMap(columnMap));
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean delete(Wrapper<T> wrapper) {
- return retBool(baseMapper.delete(wrapper));
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean deleteBatchIds(List<? extends Serializable> idList) {
- return retBool(baseMapper.deleteBatchIds(idList));
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean updateById(T entity) {
- return retBool(baseMapper.updateById(entity));
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean updateAllColumnById(T entity) {
- return retBool(baseMapper.updateAllColumnById(entity));
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean update(T entity, Wrapper<T> wrapper) {
- return retBool(baseMapper.update(entity, wrapper));
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean updateBatchById(List<T> entityList) {
- return updateBatchById(entityList, 30);
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean updateBatchById(List<T> entityList, int batchSize) {
- return updateBatchById(entityList, batchSize, true);
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean updateAllColumnBatchById(List<T> entityList) {
- return updateAllColumnBatchById(entityList, 30);
- }
- @Transactional(rollbackFor = Exception.class)
- @Override
- public boolean updateAllColumnBatchById(List<T> entityList, int batchSize) {
- return updateBatchById(entityList, batchSize, false);
- }
- /**
- * 根据主键ID进行批量修改
- *
- * @param entityList 实体对象列表
- * @param batchSize 批量刷新个数
- * @param selective 是否滤掉空字段
- * @return boolean
- */
- private boolean updateBatchById(List<T> entityList, int batchSize, boolean selective) {
- if (CollectionUtils.isEmpty(entityList)) {
- throw new IllegalArgumentException("Error: entityList must not be empty");
- }
- try (SqlSession batchSqlSession = sqlSessionBatch()) {
- int size = entityList.size();
- SqlMethod sqlMethod = selective ? SqlMethod.UPDATE_BY_ID : SqlMethod.UPDATE_ALL_COLUMN_BY_ID;
- String sqlStatement = sqlStatement(sqlMethod);
- for (int i = 0; i < size; i++) {
- MapperMethod.ParamMap<T> param = new MapperMethod.ParamMap<>();
- param.put("et", entityList.get(i));
- batchSqlSession.update(sqlStatement, param);
- if (i >= 1 && i % batchSize == 0) {
- batchSqlSession.flushStatements();
- }
- }
- batchSqlSession.flushStatements();
- } catch (Throwable e) {
- throw new MybatisPlusException("Error: Cannot execute updateBatchById Method. Cause", e);
- }
- return true;
- }
- @Override
- public T selectById(Serializable id) {
- return baseMapper.selectById(id);
- }
- @Override
- public List<T> selectBatchIds(List<? extends Serializable> idList) {
- return baseMapper.selectBatchIds(idList);
- }
- @Override
- public List<T> selectByMap(Map<String, Object> columnMap) {
- return baseMapper.selectByMap(columnMap);
- }
- @Override
- public T selectOne(Wrapper<T> wrapper) {
- return SqlHelper.getObject(baseMapper.selectList(wrapper));
- }
- @Override
- public Map<String, Object> selectMap(Wrapper<T> wrapper) {
- return SqlHelper.getObject(baseMapper.selectMaps(wrapper));
- }
- @Override
- public Object selectObj(Wrapper<T> wrapper) {
- return SqlHelper.getObject(baseMapper.selectObjs(wrapper));
- }
- @Override
- public int selectCount(Wrapper<T> wrapper) {
- return SqlHelper.retCount(baseMapper.selectCount(wrapper));
- }
- @Override
- public List<T> selectList(Wrapper<T> wrapper) {
- return baseMapper.selectList(wrapper);
- }
- @Override
- public Page<T> selectPage(Page<T> page) {
- return selectPage(page, Condition.EMPTY);
- }
- @Override
- public List<Map<String, Object>> selectMaps(Wrapper<T> wrapper) {
- return baseMapper.selectMaps(wrapper);
- }
- @Override
- public List<Object> selectObjs(Wrapper<T> wrapper) {
- return baseMapper.selectObjs(wrapper);
- }
- @Override
- public Page<Map<String, Object>> selectMapsPage(Page page, Wrapper<T> wrapper) {
- SqlHelper.fillWrapper(page, wrapper);
- page.setRecords(baseMapper.selectMapsPage(page, wrapper));
- return page;
- }
- @Override
- public Page<T> selectPage(Page<T> page, Wrapper<T> wrapper) {
- SqlHelper.fillWrapper(page, wrapper);
- page.setRecords(baseMapper.selectPage(page, wrapper));
- return page;
- }
- }
|