boolean mybatis_sql,mybatis中Boolean类型 False无效问题
发布日期:2021-06-24 13:28:01 浏览次数:2 分类:技术文章

本文共 939 字,大约阅读时间需要 3 分钟。

mybatis中当查询条件有Boolean类型的时候,为false时查询无效

eg:

and is_ok = #{isOk}

此时当isOk为false时,并未查询出is_ok对应的结果来

找原因:

直接到数据库使用脚本查询

select * from table where is_ok = false

此时能查出is_ok为0的数据

select * from table where is_ok = true

此时能查出is_ok为1的数据

此时定位问题是否在

此时能查出is_ok为0的数据

通过排查去掉and isOk!=’’,可以正确的查出

所以正确的查询结构是:

and is_ok = #{isOk}

经研究:

mybatis的if判断里面最好不要使用boolean值:

mybatis会默认把空值转为false。所以如果遇见前面传空值,这个字段在mybatis里面永远就是false了,可以使用数字类型代替,但是不要使用0作为参数。

druid数据库解密加密

import com.alibaba.druid.filter.config.ConfigTools;

语句:

@Test

public void test2() throws Exception{

//解密

String word="NaSb06jVxVBGcmMeuv3wiRH6oiMLFVA0bRs6stSSz2m52pLJLne2uYQNZgIHJHfKn+TaPPw/lqVCpv2ylCaE9w==";

String decryptword = ConfigTools.decrypt(word);

System.out.println("++++++");

System.out.println(decryptword);

}

@Test

public void testEncrypt() throws Exception

{

//加密

String password ="xxxxxxx";

String encryptword = ConfigTools.encrypt(password);

System.out.println(encryptword);

}

点点滴滴积累!

转载地址:https://blog.csdn.net/weixin_33178459/article/details/113012262 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:el表达式怎么使用?_JSTL技术使用详解
下一篇:python实现简单的http服务器xinyan_python实现简单http服务器功能

发表评论

最新留言

做的很好,不错不错
[***.243.131.199]2024年04月19日 21时08分43秒