MyBatis 利用foreach处理数组参数传入
1. 使用IN实现多条件查询,传入的参数是String数组,如 issuePriority = ["ABC","BCD","EFG"]2. 在MyBatis xml文件中,使用foreach,其中,需要使用$ 而不是#, {item}需要用单引号括起来,如'${item}'<if test="issuePriority != null and issuePriority.length > 0 &qu