摘要:
Sample sample = new Sample();ExpressionParser parser = new SpelExpressionParser();EvaluationContext context = new StandardEvaluationContext(sample); E 阅读全文
摘要:
oracle中在可为NULL的字段上做逻辑关系运算要格外小心,如 <>,>,=,< 任何与NULL的运算结果都返回false, 因此对于可能为NULL的字段运算判断要用 is null 来判断,或者使用函数nvl、decode处理后在判断,比如: where 字段名 is null 或者where 阅读全文