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

com.github.mengweijin.quickboot.jdbc.BeanPropertyRowMapper Maven / Gradle / Ivy

package com.github.mengweijin.quickboot.jdbc;

import cn.hutool.core.util.StrUtil;

/**
 * @author mengweijin
 * @date 2022/10/29
 */
public class BeanPropertyRowMapper extends org.springframework.jdbc.core.BeanPropertyRowMapper {

    @Override
    protected String lowerCaseName(String name) {
        return super.lowerCaseName(StrUtil.replace(name, "_", ""));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy