All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gccloud.starter.common.mybatis.injector.methods.SelectByMap Maven / Gradle / Ivy

package com.gccloud.starter.common.mybatis.injector.methods;

/**
 * 根据columnMap 查询一条数据
 *
 * @author liuchengbiao
 * @date 2021/7/7 2:07 下午
 */

import com.baomidou.mybatisplus.core.enums.SqlMethod;
import com.baomidou.mybatisplus.core.injector.AbstractMethod;
import com.baomidou.mybatisplus.core.metadata.TableInfo;
import com.baomidou.mybatisplus.core.toolkit.StringPool;
import org.apache.commons.lang3.StringUtils;
import org.apache.ibatis.mapping.MappedStatement;
import org.apache.ibatis.mapping.SqlSource;

import java.util.Map;

public class SelectByMap extends AbstractMethod {

    @Override
    public MappedStatement injectMappedStatement(Class mapperClass, Class modelClass, TableInfo tableInfo) {
        SqlMethod sqlMethod = SqlMethod.SELECT_BY_MAP;
        String sqlSelectColumns = sqlSelectColumns(tableInfo, false);
        if (StringUtils.equals(StringPool.STAR, sqlSelectColumns)) {
            // 修改select * 为 select 具体列名,保证符合上云规范
            sqlSelectColumns = tableInfo.getAllSqlSelect();
        }
        String sql = String.format(sqlMethod.getSql(), sqlSelectColumns,
                tableInfo.getTableName(), sqlWhereByMap(tableInfo));
        SqlSource sqlSource = languageDriver.createSqlSource(configuration, sql, Map.class);
        return this.addSelectMappedStatementForTable(mapperClass, getMethod(sqlMethod), sqlSource, tableInfo);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy