确认
- [x] 我的版本是最新版本, 我的版本号与 version 相同, 并且项目里无依赖冲突
- [x] 我已经在 issue 中搜索过, 确认问题没有被提出过
- [x] 我已经修改标题, 将标题中的 描述 替换为你的想法(不得删除 描述 前面的部分)
功能改进
希望对solon同样提供对应的配置支持
参考资料
No response
Comment From: DongJigong
It has been confirmed that When I using mybatis-plus-solon working with solon framework,there is a error when Query result is Map, the key is convert to under line string key. But It usually should be Cameled keys.I hope this would be support in new release version.
Comment From: nieqiurong
@Configuration
public class MybatisExtConfiguration {
@Bean
public void db1_cfg(@Db("db1") MybatisConfiguration cfg) {
cfg.setObjectWrapperFactory(new MybatisMapWrapperFactory());
}
}
Comment From: DongJigong
@Configuration public class MybatisExtConfiguration {
@Bean public void db1_cfg(@Db("db1") MybatisConfiguration cfg) { cfg.setObjectWrapperFactory(new MybatisMapWrapperFactory()); }
}
I am woking with multiple databases, so should I config every db once?