- 浏览: 483650 次
- 性别:
- 来自: 武汉
最新评论
-
zyzyzy123:
请问有工程吗,我现在正在实现打电话的功能,但是一直不通,怀疑是 ...
实用的java 串口通信程序 -
wuhaitong:
引用[img][/img][*][url][/url] ...
jbpm -
迷糊_le:
maven命令, 蛮好的,谢谢
maven eclipse -
Wuaner:
不错的文章 , 谢谢分享!
Hadoop -
yuqihengsheng:
strong 很细
HighLighter
Comments | Specified using ## or // and extend to the end of line, e.g.
## This is a comment // , e.g.
// This is a comment /*...*/ , e.g.
/* This is a multi-line comment */ |
Identifiers / variables | Must start with a-z , A-Z , _ or $ . Can then be followed by 0-9 , a-z , A-Z , _ or $ . e.g.
Variable names are case-sensitive, e.g. NOTE: JEXL does not support variables with hyphens in them, e.g. commons-logging // invalid variable name (hyphenated) logging from the variable commons
JEXL also supports my.dotted.var
N.B. the following keywords are reserved, and cannot be used as a variable name or property when using the dot operator: my.new.dotted.var // invalid ('new' is keyword) my['new'].dotted.var
|
Scripts | A script in Jexl is made up of zero or more statements. Scripts can be read from a String, File or URL. |
Statements | A statement can be the empty statement, the semicolon (; ) , block, assignment or an expression. Statements are optionally terminated with a semicolon. |
Block | A block is simply multiple statements inside curly braces ({, } ). |
Assignment | Assigns the value of a variable (my.var = 'a value' ) using a JexlContext as initial resolver. Both beans and ant-ish variables assignment are supported. |
Method calls | Calls a method of an object, e.g.
"hello world".hashCode() hashCode method of the "hello world" String.
In case of multiple arguments and overloading, Jexl will make the best effort to find the most appropriate non ambiguous method to call. |
Literals
Integer Literals | 1 or more digits from 0 to 9
|
Floating point Literals | 1 or more digits from 0 to 9 , followed by a decimal point and then one or more digits from 0 to 9 . |
String literals | Can start and end with either ' or " delimiters, e.g.
"Hello world" 'Hello world' The escape character is |
Boolean literals | The literals true and false can be used, e.g.
val1 == true |
Null literal | The null value is represented as in java using the literal null , e.g.
val1 == null |
Array literal | A [ followed by one or more expressions separated by , and ending with ] , e.g.
[ 1, 2, "three" ] This syntax creates an JEXL will attempt to strongly type the array; if all entries are of the same class or if all entries are Number instance, the array literal will be an Furthermore, if all entries in the array literal are of the same class and that class has an equivalent primitive type, the array returned will be a primitive array. e.g. |
Map literal | A { followed by one or more sets of key : value pairs separated by , and ending with } , e.g.
{ "one" : 1, "two" : 2, "three" : 3, "more": "many more" } This syntax creates a |
Functions
empty | Returns true if the expression following is either:
empty(var1) |
size | Returns the information about the expression:
size("Hello") |
new | Creates a new instance using a fully-qualified class name or Class:
new("java.lang.Double", 10) Note that the first argument of In case of multiple constructors, Jexl will make the best effort to find the most appropriate non ambiguous constructor to call. |
ns:function | A JexlEngine can register objects or classes used as function namespaces. This can allow expressions like:
math:cosinus(23.0) |
Operators
Boolean and
|
The usual && operator can be used as well as the word and , e.g.
cond1 and cond2 cond1 && cond2 |
Boolean or
|
The usual || operator can be used as well as the word or , e.g.
cond1 or cond2 cond1 || cond2 |
Boolean not
|
The usual ! operator can be used as well as the word not , e.g.
!cond1 not cond1 |
Bitwise and
|
The usual & operator is used, e.g.
33 & 4 |
Bitwise or
|
The usual | operator is used, e.g.
33 | 4 |
Bitwise xor
|
The usual ^ operator is used, e.g.
33 ^ 4 |
Bitwise complement
|
The usual ~ operator is used, e.g.
~33 |
Ternary conditional ?:
|
The usual ternary conditional operator condition ? if_true : if_false operator can be used as well as the abbreviation value ?: if_false which returns the value if its evaluation is defined, non-null and non-false, e.g.
val1 ? val1 : val2 val1 ?: val2 NOTE: The condition will evaluate to |
Equality | The usual == operator can be used as well as the abbreviation eq . For example
val1 == val2 val1 eq val2
|
Inequality | The usual != operator can be used as well as the abbreviation ne . For example
val1 != val2 val1 ne val2 |
Less Than | The usual < operator can be used as well as the abbreviation lt . For example
val1 < val2 val1 lt val2 |
Less Than Or Equal To | The usual <= operator can be used as well as the abbreviation le . For example
val1 <= val2 val1 le val2 |
Greater Than | The usual > operator can be used as well as the abbreviation gt . For example
val1 > val2 val1 gt val2 |
Greater Than Or Equal To | The usual >= operator can be used as well as the abbreviation ge . For example
val1 >= val2 val1 ge val2 |
Regex match =~
|
The Perl inspired =~ operator can be used to check that a string matches a regular expression (expressed either a Java String or a java.util.regex.Pattern). For example "abcdef" =~ "abc.* returns true . |
Regex no-match !~
|
The Perl inspired !~ operator can be used to check that a string does not match a regular expression (expressed either a Java String or a java.util.regex.Pattern). For example "abcdef" !~ "abc.* returns false . |
Addition | The usual + operator is used. For example
val1 + val2 |
Subtraction | The usual - operator is used. For example
val1 - val2 |
Multiplication | The usual * operator is used. For example
val1 * val2 |
Division | The usual / operator is used, or one can use the div operator. For example
val1 / val2 val1 div val2 |
Modulus (or remainder) | The % operator is used. An alternative is the mod operator. For example
5 mod 2 5 % 2 |
Negation | The unary - operator is used. For example
-12 |
Array access | Array elements may be accessed using either square brackets or a dotted numeral, e.g.
arr1[0] arr1.0 |
HashMap access | Map elements are accessed using square brackets, e.g.
map[0]; map['name']; map[var]; map['7'] map[7] map[0] map.0 |
Conditional
if | Classic, if/else statement, e.g.
if ((x * 2) == 5) { y = 1; } else { y = 2; } |
for | Loop through items of an Array, Collection, Map, Iterator or Enumeration, e.g.
for(item : list) { x = x + item; } item and list are variables. The JEXL 1.1 syntax using foreach(item in list) is now deprecated. |
while | Loop until a condition is satisfied, e.g.
while (x lt 10) { x = x + 2; } |
发表评论
-
Apache + Tomcat集群配置详解
2013-10-15 19:57 739Apache + Tomcat集群配置详解 ... -
maven eclipse
2013-06-05 08:41 10951. 安装m2eclipse插件 要用Eclipse构 ... -
ZooKeeper API
2013-05-16 17:27 9131)ZooKeeper API 简介 ZooKeeper ... -
给DIV添加滚动条
2012-08-02 10:51 1138直接为div指定overflow ... -
jboss数据源
2012-03-21 15:19 914jboss.xml in ejb/META-INF ... -
Apache+Jobss cluster安装配置
2012-03-21 11:21 1140系统环境:OS:linux AS4 2.6.9-78.EL A ... -
Spring 事务
2012-02-14 12:26 1028Spring 事务不回滚的问题关键是:不能对该异常用 ... -
Apache 负载均衡+Tomcat集群
2012-01-17 08:45 1129一、本机环境 1.Windows 7 64位操作系统 2. ... -
ESB企业服务总线
2011-12-20 15:37 1326ESB是企业服务总线(Ente ... -
定庄记忆法
2011-08-13 10:53 1056桩可以分为大中小三类 ... -
Android开发环境搭建全程演示(jdk+eclip+android sdk)
2011-07-12 13:44 937Android开发环境搭建全程演示(jdk+eclip+a ... -
jbpm
2011-05-17 14:44 2049JBPM_ACTION action记录表 JBPM_DECI ... -
企业信息化十年
2010-12-02 22:06 9562000年之前:宇宙大爆炸 ... -
首先,遍历map有以下方法:
2010-10-22 13:00 1503首先,遍历map有以下方 ... -
职场能力
2010-10-02 17:49 1094如今职场竞争越发激烈,一大群求职者竞聘同一个(或少数几个)岗位 ... -
tomcat 配置
2010-09-24 10:39 10121、 PermGen space的全称是Permanent ... -
YUI:带checkbox的TreeView的赋值与读值
2010-09-18 21:26 2146日前做一个用户权限管理的页面,权限是一个树形结构,每个节点前是 ... -
Spring中的Assert工具类
2010-09-05 21:02 915方法入参检测工具 ... -
tomcat 配置
2010-09-02 06:43 1462Tomcat内存溢出的原因 在生产环境中tomcat内存设置 ... -
wget
2010-07-21 08:56 1300wget功能的强大就不用多说了,在高手手里,它就像是个无往不利 ...
相关推荐
标题 "better-comments_visualstudio2010_better-comments_BetterComments_" 暗示我们讨论的是一个名为 "BetterComments" 的插件,该插件专为Visual Studio 2010设计,旨在改进代码注释的体验。"better-comments" 是...
在本文中,我们将深入探讨Laravel开发中的评论系统,基于提供的标题“Laravel开发-comments”和描述“一个简单的评论包”。Laravel是一个流行的开源PHP框架,以其优雅的语法和强大的功能而闻名,常用于构建复杂且...
VS10x Comments Extender VS2010 絕妙註解套件
"json-comments"是一个专为前端开发者设计的开源库,其核心功能是允许在JSON配置文件中添加注释。这在实际开发中尤其有用,因为JSON(JavaScript Object Notation)本身并不支持注释,使得代码的可读性和维护性受到...
这次我们聚焦于一个名为“hotel_comments.zip”的压缩包文件,它是一个专门为训练情感分析模型而设计的语料库。这个语料库包含了4000条酒店评论,每条评论都被明确地标注为正向或负向,这样的二分类任务对于提升机器...
《WordPress中的线程评论:深度解析Brian's Threaded Comments插件》 在WordPress这个全球最受欢迎的博客和网站构建平台中,交互性是提升用户体验的重要因素之一。为了增强用户参与度和对话的连贯性,很多网站管理...
Recent Comments插件的特点: •widget样式:可以定义每个边栏放置的CSS规则 •评论过滤:过滤你要输出的评论,可以更加分类、页面来显示访客的评论 •评论类型:可以选择评论显示的类型 •自定义标签:混合使用...
java的comments-logging包
comments.txt(合并后的评论)
Request For Comments(RFC)是互联网工程任务组(IETF)发布的一种技术规范和标准文档,用于提出、讨论和记录互联网相关的技术和协议。这些文档详细定义了互联网的各种协议、方法、过程和概念,对于理解网络工作...
http://wordpress.org/extend/plugins/sexy-comments/installation/ 替换原来的评论模板,让评论区域看起来有点像论坛的风格,确实相当Sexy。
前端项目-side-comments,一个接口组件,用于提供网站/app medium.com风格的评论。
strip-json-comments, 在JSON文件中,从JSON中去除注释 strip-json-comments 去除JSON注释。让你在JSON文件中使用注释 !现在是可能的:{ // rainbows "unicorn": /* ❤ */ "cake"}它将用空格替换单
meteor-comments-ui, 在你的Meteor 应用程序中,用于注释功能的简单模板 Meteor 注释用户界面 这里软件包允许你在几秒钟内添加注释框。 注释UI为 komentify插件提供基础,它允许你在不需要自定义后端的情况下向任何...
vs插件 图片注释
在本文中,我们将深入探讨基于Laravel框架的`ao-comments`项目,这是一个专为Laravel设计的评论系统组件。Laravel作为PHP领域的热门框架,以其优雅的语法和强大的功能受到开发者喜爱,而`ao-comments`则进一步扩展了...
标题中的"PyPI 官网下载 | django-comments-dab-1.0.1.tar.gz"表明这是一个在Python的包索引服务(PyPI)上发布的软件包,名为`django-comments-dab`,版本号为1.0.1,且是以tar.gz格式提供的压缩文件。PyPI是Python...
《MetaTrader 5中的Comments管理:使用"MyComment"实现多层评论展示》 在金融交易领域,MetaTrader 5(MT5)是一个广泛使用的交易平台,它提供了丰富的编程接口(MQL5)供用户自定义交易策略和分析工具。在MT5中,...
在本文中,我们将深入探讨基于Laravel框架的“laravel-comments”扩展,它是一个由actuallymab创建的注释包,旨在增强网站或应用的评论功能。这个扩展允许用户以访客身份发表评论,并且支持添加更多的元信息,从而...