我需要一个表达式求值的功能,jsp中el的写法挺简单的,是否可以在java中调用? 如在JSP中可以写:${order.quantity==100},将在页面中输出true或false,这个表达式在java中作为一个字符串,如何在java中调用EL的功能进行计算?
补充问一下,common-el如何设置变量?文档中没有这方面的例子。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
可以通过Commons-EL实现。
Commons-EL官网: http://commons.apache.org/proper/commons-el/
测试代码样例在: http://commons.apache.org/proper/commons-el/xref-test/org/apache/commons/el/ELTest.html