美文网首页
Springboot整合mybatis配置下划线转驼峰

Springboot整合mybatis配置下划线转驼峰

作者: 舒尔诚 | 来源:发表于2019-02-27 16:59 被阅读0次

    如题:两种配置方式

    springboot的配置文件 添加:

    mybatis.configuration.mapUnderscoreToCamelCase=true 或

    mybatis.configuration.map-underscore-to-camel-case=true(根据版本不同)

    2.通过@configuration配置的方式

    @Bean(name = "sqlSessionFactory")
    public SqlSessionFactory sqlSessionFactoryBean() throws IOException {
    SqlSessionFactoryBean bean = new SqlSessionFactoryBean();
    bean.setDataSource(dataSource);
    PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
    bean.setMapperLocations(resolver.getResources("classpath:/mapper//.xml"));
    try {
    //开启驼峰命名转换
    bean.getObject().getConfiguration().setMapUnderscoreToCamelCase(true);
    return bean.getObject();
    } catch (Exception e) {
    e.printStackTrace();
    throw new RuntimeException(e);
    }
    }

    相关文章

      网友评论

          本文标题:Springboot整合mybatis配置下划线转驼峰

          本文链接:https://www.haomeiwen.com/subject/pcifuqtx.html