本文主要是介绍mybatis中foreach重复使用一个对象的问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
需求:在一个非常夸张的SQL中,出现了一个需求点,在这个SQL中需要将同一个collection对象进行多次循环输出。
画外音:该SQL不能重构,改了恐怕会错的更多,只能采取打补丁的方式,等待下一个接收这个SQL的人员,哈哈。
出现的问题:
本人采取foreach的方式来遍历该集合对象,整个SQL看起来像这样
select id,name from A
where
name in
<foreach item="item" collection="myList" separator="," open="(" close=")" index="">#{item}
</foreach>unionselect id,name from B
where
name in
<foreach item="item" collection="myList" separator="," open="(" close=")" index="">#{item}
</foreach>
对于第一次出现的循环,打印出的SQL结果是正常的,但是第二次出现的循环却找不到内容,感觉这个对象好像不存在了。
排查方法:
1、当然是在网上找有没有类似的问题撒,参考了这个文档https://blog.csdn.net/weixin_30549657/article/details/96281457,修改了item的名称,发现还是木有效果
2、从源码角度来找问题源头,根据网上大神们的源码解读,找到了ExpressionEvaluator这个类,贴出的部分源码就是对集合对象进行SQL动态替换的入口
public Iterable<?> evaluateIterable(String expression, Object parameterObject) {Object value = OgnlCache.getValue(expression, parameterObject);if (value == null) throw new BuilderException("The expression '" + expression + "' evaluated to a null value.");if (value instanceof Iterable) return (Iterable<?>) value;if (value.getClass().isArray()) {// the array may be primitive, so Arrays.asList() may throw// a ClassCastException (issue 209). Do the work manually// Curse primitives! :) (JGB)int size = Array.getLength(value);List<Object> answer = new ArrayList<Object>();for (int i = 0; i < size; i++) {Object o = Array.get(value, i);answer.add(o);}return answer;}if (value instanceof Map) {return ((Map) value).entrySet();}
设置了断点,跳到了ForEachSqlNode这个类,其中贴出的部分源码,就是动态替换集合的内容了,其中int uniqueNumber = context.getUniqueNumber();就是可以解释同一个集合对象,多次使用不生效的原因。因为同一个对象,一旦遍历之后它的偏移量不会重置,类似于只执行一次。
public boolean apply(DynamicContext context) {Map<String, Object> bindings = context.getBindings();final Iterable<?> iterable = evaluator.evaluateIterable(collectionExpression, bindings);boolean first = true;applyOpen(context);int i = 0;for (Object o : iterable) {DynamicContext oldContext = context;if (first) {context = new PrefixedContext(context, "");} else {if (separator != null) {context = new PrefixedContext(context, separator);} else {context = new PrefixedContext(context, "");}}int uniqueNumber = context.getUniqueNumber();if (o instanceof Map.Entry) { // Issue #709 @SuppressWarnings("unchecked") Map.Entry<Object, Object> mapEntry = (Map.Entry<Object, Object>) o;applyIndex(context, mapEntry.getKey(), uniqueNumber);applyItem(context, mapEntry.getValue(), uniqueNumber);} else {applyIndex(context, i, uniqueNumber);applyItem(context, o, uniqueNumber);}contents.apply(new FilteredDynamicContext(configuration, context, index, item, uniqueNumber));if (first) first = !((PrefixedContext) context).isPrefixApplied();context = oldContext;i++;}applyClose(context);return true;}
解决方法:
根据阅读源码得出的这个结论,解决思路也很清晰了,就是再定义一个变量就可以了,变量的内容跟第一个变量内容保持一致即可。just do it。
吭哧吭哧,验证正确,打完收工。最后的SQL类似于这样,myList跟myList2内容一样
select id,name from A
where
name in
<foreach item="item" collection="myList" separator="," open="(" close=")" index="">#{item}
</foreach>unionselect id,name from B
where
name in
<foreach item="item2" collection="myList2" separator="," open="(" close=")" index="">#{item2}
</foreach>
这篇关于mybatis中foreach重复使用一个对象的问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!