Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Spring 框架。在编写自定义查询时,我无法检查布尔值的参数。例如,这不起作用:
<isEqual property="booleanVariable" compareValue="0"> do some SQl codes </isEqual>
上述检查不起作用,它在booleanVariabletrue 和 false 两种情况下都评估为相等。
booleanVariable
我试图替换compareValue="true"和“假”。
compareValue="true"
是否可以像上面一样检查 XML 中的布尔属性?
用于<isEqual property="booleanVariable" compareValue="true/false">比较布尔值。
<isEqual property="booleanVariable" compareValue="true/false">
在 java 中,布尔值与 1 或 0 没有关系。原始类型始终为真或假