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

2
votes
1answer
21 views

Calling method with null parameters in EL ends up in 0 being passed instead of null

I have a POJO: public class Foo { public String getValue(Integer arg0, BigDecimal arg1) {...} } I put it as model-parameter from Spring MVC into JSP, and try to use it: <c:set var="ans" ...
-1
votes
1answer
46 views

foreach through a servlet List in a javascript function

Servlet code: protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { HttpSession session = request.getSession(); Facade f = new ...
0
votes
1answer
45 views

How to use JSTL tags without using jsp UseBean

I have a problem where i am supposed to stop XSS vulnerabilities . A typical example here is in vulnerable.jsp : <h2><%= myObj.getElf() %></h2> The myObj is an object of the ...
1
vote
1answer
32 views

Dynamically build the column values

I am building a component that will build a data table dynamically. I need to pass in the field name from the class and concatenate it to the var attribute of the table. example : "tblVar.firstName". ...
0
votes
0answers
27 views

How do I make p:dataTable in ui:composition more reusable?

I'm using PrimeFaces 3.4 and I have a series of .xhtml for the dataTables on a page. I would like to use one .xhtml for all the tables on the page and use ui:param when including that .xhtml for each ...
0
votes
1answer
35 views

How to get init param in JSF 1x using EL

i have a context param as follows: <context-param> <param-name>myInitParam</param-name> <param-value>myValue</param-value> </context-param> i want to ...
-2
votes
1answer
29 views

How to use EL with p:panel header?

I want to put a dynamic string inside a p:panel header just like using it with p:inputText for example value="#{object.property}" is it possible to do that ?
0
votes
0answers
28 views

Passing parameter in EL action doesn't work with RequestScoped bean

Edit: using JSF scopes now and JSF managedbean instead of CDI as it doesn't work with CDI beans regardless of RequestScoped, ConversationScoped or SessionScoped. I'm trying to pass a parameter to a ...
0
votes
3answers
54 views

JSF action method with variable parameter

How do I call method with variable parameters in JSF? I tried something like this: <h:commandButton value="Send" action="#{myBean.checkPIN(someOtherBean.PIN)}" /> However, this doesn't work. ...
0
votes
0answers
19 views

Upgrade jar el-api 2.1 to version 2.2 on Tomcat 6.0.36

I'm developing a webapp with JSF 2, Spring, Mybatis and Maven on Tomcat 6.0.36...I need el-api 2.2 for deploy webapps with JSF 2. I want to know if exist any form to upgrade jar el-api without ...
0
votes
1answer
25 views

EL can't handle a single character before an underscore?

I am using EL to pull an object from a bean stored in the session. The object is question is called P_COV_MOULT and is declared as follows: this.P_COV_MOULT = new FormField("F_B_P_COV_MOULT",""); ...
1
vote
1answer
61 views

Concatenating parameters

I'm trying to concatenate a string in Expression Language to access a property of an object and failing to do so. Within an XPage in Lotus Notes, I want to programatically select which field to which ...
0
votes
1answer
28 views

Create a new instace class in a JSF EL expression

Is it possible to pass a generic class instance to a method in JSF EL expression ? For example something like this: #{beanController.someMethod(new ClassToInstance())} It should be very useful for ...
0
votes
1answer
60 views

Show a specific model property based on selected item

I have this model: public class Rent { private Integer priceDay; private Integer priceWeek; private Integer priceMonth; // ... } I would like to display the price of the desired ...
2
votes
2answers
44 views

ui:repeat inside a javascript

is there any way to perform a ui:repeat inside a javascript? this is what i'm trying to do. var point; <ui:repeat value="#{testController.allItems}" var="item"> point = new ...
1
vote
2answers
48 views

How does EL context resolve UIData 'var' attributes?

I am trying to create a custom UIData component and I am having troubles with Ajax. The first call works fine, but subsequent calls cannot resolve my UIData 'var' attribute. When trying to debug, I ...
0
votes
2answers
105 views

method for passing java variable value to jstl in jsp page

I found out the code to pass a java variable to jstl like this :- <% String str = "abc"; pageContext.setAttribute("str", str); %> and to get that value in jstl tags we will have to use the ...
0
votes
1answer
68 views

set value of jquery variable equal to a jstl variable

I have a jstl value, <c:forEach items="${detail}" var="u"> <c:set value="${u.content}" var="c"/></c:forEach> I want to set the variable in jquery equal to the var = "c". How ...
1
vote
2answers
65 views

How to show JSF components if list is not null and has size() > 0

How do I show JSF components if a list is not null and it has a size() > 0?
0
votes
1answer
51 views

How to access List's properties in Spring EL?

EL tries to interpret property name as List index and fails. How to access List's normal bean properties if they are exist? UPDATE I had my own class public class Directory extends ...
0
votes
0answers
30 views

EL brackets with nested property

I have an EL expression that uses brackets: #{car[column.property]} column.property could possibly be nested (i.e. prop.subprop) but I don't know because this is being used in a totally generic ...
0
votes
1answer
40 views

How to display attributes of an object when onChange on select input occurs using SPring MVC

I am using Spring MVC. I am trying to display a list of "Firm" objects. Firm has different attributes including firmName, state, zipcode etc... The code to display just the firm object (which is the ...
0
votes
1answer
45 views

PropertyNotFoundException EL Expressions not resolving?

I have code similar to this in my facelet... <c:foreach items=#{myBean.listOfA} var="a"> <c:foreach items=#{myBean.listOfB} var="b"> <c:set var="aName" value="#{a.name}"> ...
9
votes
2answers
156 views

invoke methods with parameter(s) on anonymous inner class beans in EL

If I have an anonymous inner class object like this (where Foo is an interface): Foo foo = new Foo(){ @Override public String hello(Object dummyArg){ return "hello, world."; } }; and I ...
0
votes
0answers
43 views

Seam, JSF, and EL null checks

I'm working on a web application that is pretty vast. We're using Seam 2.2.1 and JSF, among other things. The full implementation isn't really relevant to the question, though. We use plenty of XHMTL ...
0
votes
0answers
75 views

Map ArrayList values in a Java file to an HTML object in a JSP file

I am writing a stock application. Related to this question, I want the user to be able to sell the stocks they have previously bought. I'm getting the previously bought stocks from the db at the ...
3
votes
1answer
36 views

Replace only part of an EL

I have a template in JSF, this template have a button whose action must be different for each page that will use this template. I wonder if there is any way to set only a part of that action. Eg In ...
0
votes
1answer
38 views

JSTL implicit objects not working as expected

Printing implicit object with JSTL 1.1.2 gives me pointers instead of expected values! Output: cookie=[Ljava.lang.String;@52a96147 cache-control=[Ljava.lang.String;@6e31a6b6 ...
0
votes
1answer
26 views

How to render Backbone el correctly into the view page

I'm trying to working correctly with my first Backbone app and trying to render it into my page. I've wrote this app but I didn't got how I shoud put the app html rendered in the html view: ...
1
vote
1answer
16 views

How to compare an EL expression against the result of another EL expression

I have following attribute in my Facelet: rendered="#{createTicketBaseBean.show == '#{I18N['key_please_select']}'}" I am trying to compare the value with property in my properties file, but I get ...
-1
votes
0answers
43 views

JSP Expression Language and JSF EL

Is JSF EL/RichFaces/PrimeFaces based on JSP EL specification ? if true, this mean all JSP EL specification can be used in JSF EL ? Thanks
2
votes
0answers
34 views

Programmatically register taglib reference

Is there a way to programmatically, in a java code, register custom taglib reference? I am using JSF 1.2_09, rich faces 3.3.3, jsf-facelets 1.1.14. Specifically: In this code, jsf Expression ...
0
votes
0answers
16 views

escape argument is alway “false” when calling PageContextImpl.propprietaryEvalue method from the generated JSP java code

I am wondering if there is a way to generate the JSP java code that calls this method with escape set to true during expression evaluation. I know other ways to do the escape but it seems JSP runtime ...
0
votes
1answer
79 views

JSTL Scriptlet to java class

I'm pretty new to Java so bear with me. I have a scriptlet that is put into a JSTL tag. I'm trying to do away with my scriptlets and put them in a seperate class. Except I'm really stumped on this ...
1
vote
1answer
65 views

javax.el.PropertyNotFoundException: Property 'toArray' not found on type org.hibernate.collection.internal.PersistentSet

I am using hashset.toArray()[x] to display a element in the jsf view, and this is working fine in my machine. But when I move this on to test server, the above error is thrown. Both machines are ...
0
votes
1answer
36 views

c:if in jsp page is not working

i have a page which needs to show message box upon invalid login. i have the following code in my jsp: <script type="text/javascript"> window.history.forward(); function ...
0
votes
0answers
95 views

map list object into select box in jsp page?

In Spring Java Application i have Bean class in this one property have list of other bean object private List<Course> courseName = new ArrayList<Course>(); -------//Setter and getter ...
0
votes
2answers
43 views

Concatente variable names in EL

I have 5 variables that need to be used inside a foreach thats opened, so I named each variable like IMG1 IMG2 IMG3 IMG4 IMG5. I would like to know how to call the src of the image like this ...
0
votes
0answers
60 views

Access nested properties in variable EL expression

Normally, I can access nested bean's property, in this case, address_name of address like this: #{customer.address.address_name} Let's say, I have a String: String addressPath = ...
0
votes
1answer
61 views

How to access as JsonNode from session | ${user.get()}

I'm creating a simple session object (JsonNode) JsonNode me = mapper.readValue(result, JsonNode.class); HttpSession session = request.getSession(true); session.setAttribute("user", me); The trying ...
1
vote
1answer
62 views

How to group boolean conditions in EL

I'm having trouble evaluating a pair of boolean expressions within a JSF using EL. Here's my snippet: <a4j:commandButton id="addbtn" value="Add School(s)" action="#{somebean.someaction}" ...
0
votes
0answers
34 views

Method call from an EL fails if method exists with different signatures - JSF2

I have a backing-bean containing a few methods that share the same names but have different signatures, e.g.: public void voteUp( Member member, ObjectA object ) { ... } public void voteUp( Member ...
0
votes
0answers
46 views

Evaluating value in inputText in JSF 2.x: X is not a valid Java identifier

I've got following problem: I use myComp.xhtml as a wrapper for inputText as follows: <h:inputText value="#{entity[entityProperty]}"> ... </h:inputText> when I try to use myComp like ...
0
votes
1answer
28 views

JSTL EL - Where is it getting value?

I have a controller which has the following code snippet ... model.addAttribute("parade", "Parade1"); ... session.setAttribute("parade", "Parade2"); But when I access it using ${parade} it gives me ...
1
vote
0answers
24 views

EL and covariant return types

i have these classes public abstract class Unit { public abstract UnitType getType(); ... } public class Item extends Unit { protected ItemType type; @Override public ItemType ...
1
vote
1answer
24 views

EL tag c:forEach only iterates once

From the thread here, my setup is the following: Setup: Apache Tomcat 5.5 Servlet/JSP: 2.4/2.0 according to http://tomcat.apache.org/whichversion.html JSTL in .WAR: 1.2 changed to 1.1.2 now. In ...
0
votes
1answer
53 views

ELException on Tomcat 5.5 and JSTL 1.2

Setup: Apache Tomcat 5.5 Servlet/JSP: 2.4/2.0 according to http://tomcat.apache.org/whichversion.html JSTL in .WAR: 1.2 But I still get a java.lang.NoClassDefFoundError: javax/el/ELException ...
-3
votes
2answers
82 views

How to call a method when a form is submitted on a JSF page?

What I basically want to do is, when the user submits the form, a method should be called, which is not a setter. Here is what I have tried: <h:form> <p> Your guess: ...
0
votes
0answers
35 views

tomcat 7 class conflict in the EL processor

I am trying to test a connection to a data source using Tomcat 7.0.35 as my server (and Netbeans and MySQL) by using jsp file to test the connection. I am receiving the following error: ...
0
votes
1answer
85 views

<c:forEach> treats items property as a string

I am trying to iterate over a collection of elements, which are complex types (another entities) using <c:forEach>: <c:forEach items="#{repcatTree.items}" var="item"> <div ...

1 2 3 4 5 23