- idea引用本地jar包
- idea打jar包
- mybatis在xml中遍历集合
导入库中的所有jar
也可以从这里添加单个jar包
选择主类
jar包输出位置
构建jar
运行jar
java -jar xxx.jar
mybatis在xml中遍历集合
<if test="eqpGroupQueryDTO.eqpIdList != null and eqpGroupQueryDTO.eqpIdList.size>0">
and a.id not in
<foreach collection="eqpGroupQueryDTO.eqpIdList" open="(" close=")" separator="," item="id">
#{id}
</foreach>
</if>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)