Google News
logo
JSP - Interview Questions
What is Expression Language (EL) in jsp?
Expression Language (EL) was introduced in jsp 2.0 primarily to simplify the accessibility of data stored in java beans. To get attributes or parameters with the help of HTML tags. It can also be used for arithmetic, relational or logical operations.
 
Syntax : ${Expression}
 
Any given expression inside the bracket will be evaluated at runtime.
Advertisement