| Author |
How do EL Expression containing combination Arithmetic ,Logical, Relational Operators work ?
|
mohitkumar gupta
Ranch Hand
Joined: May 18, 2010
Posts: 517
|
|
myBean is a bean created in request scope with value of testproperty as 33
I am unable to get How these El expression operate.
How to EL operator work left to right or viceversa if in an EL we have combination of Arithmetic ,Logical and Relational operators ?
|
OCPJP 6.0 93 %
|
 |
Piyush Joshi
Ranch Hand
Joined: Jun 10, 2011
Posts: 206
|
|
mohitkumar gupta wrote:
How to EL operator work left to right or viceversa if in an EL we have combination of Arithmetic ,Logical and Relational operators ?
The same way you expect them to work in java code. The operator precedence is same as in java.
For example: ${5 + 3 lt 6} will work same way as: (5 + 3 < 6) in a java code.
|
OCPJP 6, OCE-JSP and Servlet Developer
|
 |
mohitkumar gupta
Ranch Hand
Joined: May 18, 2010
Posts: 517
|
|
|
Thanks Piyush
|
 |
 |
|
|
subject: How do EL Expression containing combination Arithmetic ,Logical, Relational Operators work ?
|
|
|