2021
06-05
06-05
mybatis 为什么千万不要使用 where 1=1
1.解决方案下面是mybatis查询语句,如果我们这次我们将“state=‘ACTIVE'”设置成动态条件,看看会发生什么。<selectid="findActiveBlogLike"resultType="Blog">SELECT*FROMBLOGWHERE<iftest="state!=null">state=#{state}</if><iftest="title!=null">ANDtitlelike#{title}</if><iftest="author!=nullandauthor.name!=null">ANDauthor_namelike#{author.name}</if...
继续阅读 >