freemarker.core.NonBooleanException: For "&&" right-hand operand: Expected a boolean, but this has

今日,在执行hibernate的 dynamic-hibernate-statement(动态查询语句)时遇到异常,异常信息如下:

Caused by: freemarker.core.NonBooleanException: For "#if" condition: Expected a boolean, but this has evaluated to a method+sequence (wrapper: f.e.b.SimpleMethodModel):
==> bean.isCountMode  [in template "hql.deployLog.advanceQuery" at line 4, column 14]  
----
Tip: Maybe using obj.something instead of obj.isSomething will yield the desired value.
----
----
FTL stack trace ("~" means nesting-related):
	- Failed at: #if bean.isCountMode  [in template "hql.deployLog.advanceQuery" at line 4, column 9]
----
分析&排查:

根据异常提示信息
1.定位报错位置(Failed at): “#if bean.isCountMode”
2.异常原因:Expected a boolean, but this has evaluated to a method+sequence(预计是一个布尔值,但这是方法+序列【来自某度翻译】)
3.排查:
仔细检查了下传入动态语句的 bean,isCountMode属性确实是一个boolean,怎么会报错,报错这是一个方法呢!!!
仔细看!!!
再仔细看看!!!
。。。
isCountMode属性!!!
注意这个属性的开头,用了 is
这里要回顾下 Java基础:
普通的属性,取值方法和赋值方法分别是 getXxx() 和 setXxx()
boolean类型属性,取值方法和赋值方法是 isXxx() 和 setXxx()
好吧,这里犯了个很低级的错误,是属性命名导致的,
isCountMode属性的 取值方法名也叫 isCountMode,导致程序识别错误

解决:

将 isCountMode 改名为 countMode ,重新生成取值方法和赋值方法

总结:

关于属性命名的低级错误!
看不懂英文没关系,[xxx翻译]是个好用的东西!
异常信息很关键!!!
(不要着急着在网络上搜罗一堆解决方案,试着,自己通过异常信息,定位问题,解决问题。试错,是个很不爽的体验,但,你懂的。)

你可能感兴趣的:(异常小记)