org.apache.ibatis.session.Configuration configuration = new org.apache.ibatis.session.Configuration(); configuration.setMapUnderscoreToCamelCase(true); bean.setConfiguration(configuration);
这个配置完不会报错也能转换
bean.getObject().getConfiguration().setMapUnderscoreToCamelCase(true);
但是这个配置后会报错
Invalid bound statement (not found)
不知道是什么原因,求指教