Tagged Questions

EL (Expression Language) enables the dynamic resolution of Java objects and methods in JSP and Facelets pages. EL expressions take the form of ${foo} and #{bar}.

learn more… | top users | synonyms

22
votes
4answers
23k views

How do you get the length of a list in the JSF expression language?

How would I get the length of an ArrayList using a JSF EL expression? "#{MyBean.somelist.length}" does not work.
19
votes
1answer
12k views

Evaluate empty or null JSTL c tags

How can I validate if a String is null or empty using the c tags of JSTL? I have a variable of name var1 and I can display it, but I want to add a comparator to validate it. <c:out ...
18
votes
1answer
1k views

Difference between JSP EL, JSF EL and Unified EL

HI, I would like to know the detailed difference between the Expression Languages(EL). There is JSP EL, JSF EL and Unified EL. I would like to know the history behind the EL and what is the latest ...
10
votes
3answers
1k views

How to reference constants in EL?

How do you reference an constants with EL on a JSP page? I have an interface Addresses with a constant named URL. I know I can reference it with a scriplet by going: <%=Addresses.URL%>, but how ...
10
votes
1answer
15k views

null check in jsf expression language

Please see this Expression Language styleClass="#{obj.validationErrorMap eq null ? ' ' : obj.validationErrorMap.contains('key')?'highlight_field':'highlight_row'}" Even if the map is null, ...
8
votes
2answers
4k views

How to URL-encode a String with JSTL?

What is the best way to URL-encode a String with JSTL? <c:url value="/user/${user.name}"/> According to any documentation I find, this should take care of it. But it does not. It encodes ...
8
votes
4answers
718 views

Is there a shorthand for <fmt:message key=“key” />?

It's tedious and ugly to write things like: <input type="button" value="<fmt:message key="submitKey" />" /> And in case you want to nest the message tag in another tag's attribute it ...
8
votes
1answer
4k views

Mixing JSF EL in a Javascript file

I was wondering if anyone out there knew of a way to have EL expressions in included JavaScript files be evaluated by JSF. I was hoping that Seam might have a way around this but no luck so far. All I ...
8
votes
5answers
18k views

Concatenate strings in JSP EL?

I have a List of beans, each of which has a property which itself is a List of email addresses. <c:forEach items="${upcomingSchedule}" var="conf"> <div class='scheduled' ...
7
votes
3answers
2k views

String Concatenation in EL

I would like to concatenate a string within a ternary operator in EL(Expression Language). Suppose there is a variable named value. If it's empty, I want to use some default text. Otherwise, I need ...
7
votes
1answer
553 views

Access the size of a collection in JSP/JSTL/EL

I have a List variable called services in my JSP page. I need to add some markup to the page if there's more than 1 element in the list. What I'd like to do is... <c:if test="${services.size() ...
7
votes
2answers
5k views

Expression Language & Eclipse warning: “items” does not support runtime expressions

i have the following JSP: <%@ page contentType="text/html" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> <%@ page isELIgnored="false"%> ...
7
votes
2answers
4k views

JSF Testing for Enum equality

Is it possible to test for enum equality in JSF? i.e. <h:outputText value="text" rendered="#{myBean.enum==BeanEnum.enum1}"/>
7
votes
2answers
9k views

Concatenate strings in JSF/JSP EL and Javascript

I'm having troubles with EL and javascript functions (JSF 1.2, Facelets, Richfaces 3.3.0GA). I have a page that includes another composition: <ui:include ...
7
votes
10answers
4k views

JSTL/JSP EL (Expression Language) in a non JSP (standalone) context

Can anyone recommend a framework for templating/formatting messages in a standalone application along the lines of the JSP EL (Expression Language)? I would expect to be able to instantiate a an ...
6
votes
1answer
134 views

JSF2 redirect with includeViewParams allows users to enter EL expression which are resolved into text fields

I have a JSF2 XHTML page that defines view parameters, this allows one to have bookmarkable URLs. The XHTML page includes the parameters: <f:metadata> <f:viewParam name="searchName" ...
6
votes
1answer
1k views

JSF 2: Using enums in the rendered attribute

Is there any way to check declaratively whether an enum has a specified value. For example: <h:graphicImage name="error.png" library="images" rendered="#{viewController.current.status == ...
6
votes
4answers
9k views

How do I round a number in JSTL?

I'm doing a division in a JSP and I'd like to round the result - how should I do this? i.e. <c:set var="expiry" value="${(expire.time - now.time) / (60 * 1000)}"/> ...how do I round the ...
5
votes
3answers
96 views

Comparing string and boolean in Expression language

I have this behaviour I do not really understand ${requestScope.rs_redirectFacade} ${requestScope.rs_redirectFacade.class.name} ${requestScope.rs_redirectFacade == 'error'} outputs false ...
5
votes
4answers
167 views

What is the difference between #{…} and ${…} in EL Syntax

My question is straightforward as you can see. What is the difference between #{...} and ${...} in EL Syntax?
5
votes
2answers
403 views

Solving a PermGen issue on redeploy with Jetty 7

After a couple of days of debugging I have managed to have a medium-to-large web application redeploy successfully on Tomcat 6.0.32 without any PermGen leaks. I saw the PermGen drop after it filled, ...
5
votes
1answer
2k views

How to call a static method in JSP/EL?

I'm new to JSP. I tried connecting MySQL and my JSP pages and it works fine. But here is what I needed to do. I have a table attribute called "balance". Retrieve it and use it to calculate a new value ...
5
votes
1answer
702 views

How to get EL (Expression Language) content assist (autocomplete) in JSP / JSP Tags in Eclipse?

Is there a way, via configuration, upgrade or a plugin to get content assist in JSP EL expressions? e.g. ${CTRL+SPACE ... or ${pageContext.CTRL+SPACE ... etc...
5
votes
2answers
4k views

Expression Language in jsp not working

Hi I am new to jsp and using Expression language.I am using Eclipse Galileo with version 2.5 and tomcat6 server . I just want to ask that my simple expression language is not printing the vale like if ...
5
votes
2answers
2k views

EL expressions won't executed in Tomcat 5.5, but working in tomcat 6.0.20

I am developing my application using spring-web-mvc... Now at my Controller it returns like this : public class InterfacesManageController implements Controller { public ModelAndView ...
5
votes
6answers
5k views

How do i pass an object to a JSP tag

I have a JSP page that contains a scriplet where i instantiate an object. I would like to pass that object into the JSP tag without using any cache. For example i would like to accomplish this: ...
4
votes
2answers
223 views

how to debug JSF/EL

How to debug EL in the JSF page? I'd like to watch variable values, function calls an so on. The best solution would be an eclipse plugin, but any other possibility is better than guessing "Why this ...
4
votes
1answer
234 views

JSF 2.1 ValueExpression in action-attribute

Section 3.1.4 of the JSF 2.1 Specification says that all attributes of standard components are value expression enabled. I want to assign a value expression to the action attribute of a ...
4
votes
2answers
206 views

MethodExpression invocation without parameters in JSF 2.0

I'm trying to invoke a parameterless method from a JSF 2.0 facelet by #{myBean.foo()} (without any surrounding tag). According to Burns/Schalk: The Complete Reference: JSF 2.0 that's possible ...
4
votes
1answer
391 views

How to display value of List#size() in JSF EL?

I'd like to know if there's a way to bind the returned value of a method into a JSF component. I'll explain myself better. Let's say I have a class like this: public class Document { private ...
4
votes
1answer
143 views

Prevent session attribute access by EL

I understand how to access Session attributes using EL in my JSP/Servlet application: <p> Hello <c:out value="${sessionScope.userName}"/> </p> However, I was wondering if ...
4
votes
1answer
414 views

Nesting EL functions

I am getting EL parsing exceptions when doing this in my JSP: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@ taglib prefix="f" ...
4
votes
1answer
707 views

JSF EL: instanceof reserved but not yet implemented?

I've found the instanceof operator in JSF EL, but it throws an exception when used. It's obviously reserved but not implemented? When will it (probably) be available, if not already in a newer version ...
4
votes
2answers
249 views

Java keywords not allowed as EL identifiers

Recently I upgraded my development tomcat from 7.0.0 to 7.0.4. I had things like: <c:set var="static" value=".." /> <c:set var="class" value=".." /> Both worked on 7.0.0 but stopped ...
4
votes
1answer
1k views

How to use the JSTL “if” tag without getting “..attribute test does not accept any expressions”

I've been googling around for quite some time now and I've decided to ask this here, how would I make the following code work? <c:if test="${null != searchResults}" > ...
4
votes
1answer
1k views

How to obtain request attribute in JSP using EL?

I know this isn't hard, but I'm not having any luck. I want to make fooList from a Servlet available in a JSP. So in the Servlet I have: request.setAttribute("list", fooList); RequestDispatcher ...
4
votes
2answers
2k views

JSP EL String concatenation

How do I concatenate strings in EL? I want to do something like this but it doesn't work: ${var1 == 0 ? 'hi' : 'hello ' + var2} It throws an exception trying to cast 'hello' to a Double
4
votes
2answers
647 views

JSP 2.0 SEO friendly links encoding

Currently I have something like this in my JSP <c:url value="/teams/${contact.id}/${contact.name}" /> The important part of my URL is the ID, I just put the name on it for SEO purposes (just ...
4
votes
2answers
924 views

Advantages of OGNL usage over typical EL in Struts2

Say that I don't leverage OGNL to create my Struts2 web application and just purely uses typical el provided by Sun. What would be the downside of it? As far as I know, OGNL is a kind of expression ...
3
votes
1answer
36 views

Expression language. Dominant variable

In JSP page we can access to attributes using this: ${name}. But if we in sevlet do the following: req.getSession.setAttribute("name", sessionName ); getServletContext().setAttribute("name", ...
3
votes
3answers
132 views

Testing if a BigDecimal value is zero in a JSP EL Expression

The following does not always behave as you would expect: <c:if test="${someBigDecimal == 0}"> If someBigDecimal has a value of 0, but has a scale other than 0, the == operation returns ...
3
votes
1answer
83 views

How to set a variable in JSF?

My code here iterates the columns for each row and the rendered attribute is calculated every iteration, overcalling testRule. <p:dataTable ...> <p:column ...> ... ...
3
votes
1answer
96 views

How do I check two conditions in one <c:if>?

How do I check two conditions in one <c:if>? I tried this, but it raises an error: <c:if test="${ISAJAX == 0} && ${ISDATE == 0}">
3
votes
2answers
130 views

How to get session attribute with a dynamic key in EL?

If I set session like this: <% session.setAttribute("taintedAttribute", "what ever we want"); %> normally we can get session variable like this in EL ${sessionScope.taintedAttribute } But ...
3
votes
1answer
57 views

Doubly nested EL variables?

I'm using Spring MVC for my controller, and JSPs are my presentation layer. Inside my Spring controller, I have: model.put("issues", dataManager.getIssues()); model.put("functions", ...
3
votes
2answers
232 views

CDI injection in a JSP

Within a JSP it is possible to use CDI managed beans using EL expressions such as ${myBean.myAttribute}. No problem here. I would like to use "regular injection" (i.e. without using EL expressions) ...
3
votes
1answer
95 views

How to parse the templated sentence “#{name} invited you” using expression language

I am a new bee to Java. My intension is to use the template like sentences in Java program (no JSP or any web related pages) Example: String name = "Jon"; "#{ name } invited you"; or ...
3
votes
1answer
446 views

How to create a custom EL function?

Im new to JSF 2. My question is related to BalusC's answer to this question jsf2 ajax update parts based on request parameters I tried the kickstart code BalusC posted and I encountered an EL parsing ...
3
votes
3answers
437 views

jQuery tmpl and JSP code not playing nicely

I've been using the jQuery tmpl library for some projects and really liking it. I'm not using it on a small project that needs to be in JSP, and things got strange. It is not working fully. ...
3
votes
1answer
411 views

JSF 2 Composote Component EL Problem

I have a JSF Composite Component that has a EL Expression on the Interface part, code snippet below. <cc:interface> <cc:attribute name="label" type="java.lang.String"/> ...

1 2 3 4 5 12