检查速度模板的 Long 类型条件
Checking if condition on Long type for velocity template
如果条件
,java 的长类型不适用于速度
我正在使用 Java 的电子邮件速度引擎,其中一个变量类型是 Long。
在该变量上尝试 if 条件时它永远不会成功。
尝试了以下方法,但 none 很有帮助,
#if($customTypeList.LongTypeId == 1)
#if($customTypeList.LongTypeId == '1')
#if($customTypeList.LongTypeId == "1")
它应该进入 if 条件,因为变量值为 1。
我已经用 sysout 甚至在模板中打印验证了这一点。
试了几次居然有答案了...
发帖帮助他人。
#if($customTypeList.longTypeId.intValue() == 1)
如果条件
,java 的长类型不适用于速度我正在使用 Java 的电子邮件速度引擎,其中一个变量类型是 Long。 在该变量上尝试 if 条件时它永远不会成功。
尝试了以下方法,但 none 很有帮助,
#if($customTypeList.LongTypeId == 1)
#if($customTypeList.LongTypeId == '1')
#if($customTypeList.LongTypeId == "1")
它应该进入 if 条件,因为变量值为 1。 我已经用 sysout 甚至在模板中打印验证了这一点。
试了几次居然有答案了... 发帖帮助他人。
#if($customTypeList.longTypeId.intValue() == 1)