Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mastering JavaServer Faces 2.2

You're reading from   Mastering JavaServer Faces 2.2 Master the art of implementing user interfaces with JSF 2.2

Arrow left icon
Product type Paperback
Published in Jun 2014
Publisher
ISBN-13 9781782176466
Length 578 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Anghel Leonard Anghel Leonard
Author Profile Icon Anghel Leonard
Anghel Leonard
Arrow right icon
View More author details
Toc

Table of Contents (15) Chapters Close

Preface 1. Dynamic Access to JSF Application Data through Expression Language (EL 3.0) FREE CHAPTER 2. Communication in JSF 3. JSF Scopes – Lifespan and Use in Managed Beans Communication 4. JSF Configurations Using XML Files and Annotations – Part 1 5. JSF Configurations Using XML Files and Annotations – Part 2 6. Working with Tabular Data 7. JSF and AJAX 8. JSF 2.2 – HTML5 and Upload 9. JSF State Management 10. JSF Custom Components 11. JSF 2.2 Resource Library Contracts – Themes 12. Facelets Templating A. The JSF Life Cycle
Index

EL syntax

In this section, you can see an overview of the main aspects of EL 2.2 and 3.0 syntax. EL supports a handful of operators and reserved words. Each of these are quickly described in the following section (more details are in the EL specification document (http://download.oracle.com/otndocs/jcp/el-3_0-fr-eval-spec/index.html)).

EL operators

EL supports the following categories of operators—arithmetic, relational, logical, conditional, empty and added starting with EL 3.0, string concatenation, assignment and semicolon operators:

Textuals

Description

Symbols

A + B

Addition

+

A - B

Subtraction

-

A * B

Multiplication

*

A {div, /} B

Arithmetic operator division

/, div

A {mod, %} B

Arithmetic operator modulo

%, mod

A {and, &&} B

Logical AND

&&, and

A {or, ||} B

Logical OR

||, or

{not, !} A

Logical opposite

!, not

A {lt, <} B

Relational less than

<, lt

A {gt, >} B

Relational greater than

>, gt

A {le, <=} B

Relational less than or equal to

<=, le

A {ge, >=} B

Relational greater than or equal to

>=, ge

A {eq, ==} B

Equal to

==, eq

A {ne, !=} B

Not equal to

!=, ne

A = B

Assignment (EL 3.0)

=

A ; B

Semicolon (EL 3.0)

;

A += B

String concatenation (EL 3.0)

+=

A -> B

Lambda expression (EL 3.0)

->

empty A

Determine whether a value is null or empty

 

A ? B : C

Evaluates B or C, depending on the result of the evaluation of A. Known as the ternary operator.

?:

 

Used when writing EL expressions

.

 

Used when writing EL expressions

[]

EL precedence of operators

Conforming to EL specification, the precedence of operators from the highest to lowest, left to right is as follows:

  • [].
  • () (used to change the precedence of operators)
  • - (unary) not ! empty
  • * / div % mod
  • + - (binary)
  • +=
  • < > <= >= lt gt le ge
  • == != eq ne
  • && and
  • || or
  • ? :
  • -> (lambda expression)
  • =
  • ;

EL reserved words

EL defines the following reserved words:

  • and, or, not, eq, ne, lt, gt, le, ge, true (Boolean literal), false (Boolean literal), null, instanceof (a Java keyword to do a class comparison between objects), empty, div, and mod
You have been reading a chapter from
Mastering JavaServer Faces 2.2
Published in: Jun 2014
Publisher:
ISBN-13: 9781782176466
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime