SSM整合 spring-mybaits配置文件——设置数据库字段名驼峰命名规则

一、简介:mybatis是支持属性使用驼峰的命名

如下java代码

public class Role {
    private Integer id;
    private String roleName;
    private String roleKey;
    private Integer orderNum;
    private Integer roleType;
    private String remark;
    ...省略set,get方法
}

列名是有下划线的

SSM整合 spring-mybaits配置文件——设置数据库字段名驼峰命名规则_第1张图片

像上面这样设计是需要配置下划线与驼峰式命名规则的映射

mapUnderscoreToCamelCase:是否启用下划线与驼峰式命名规则的映射(如first_name => firstName)

 

二、在SSM整合中的配置

方式一:
在applicationContext-dao.xml中引入mybatis配置



    
    
    
    


SqlMapConfig.xml




    
    
        
       
    

方式二:
在applicationContext-dao.xml中直接配置


    
    
    
    
        
            
        
    


三、亲测代码配置文件spring-mybatis.xml




    
    

    
    

    
    
        
        
        
        
        
        
        
        
        
    

    
    
        
        
        
        
        
        

        
            
                
                
            
        
    

    
    
        
        
        
        
    

    
    
        
        
    

    
    


你可能感兴趣的:(MyBatis学习总结,spring,数据库,java)