JavaServer Faces (JSF) is a model-view-presenter framework typically used to create web applications. Version 2.x is a major step ahead compared to JSF 1.x, significantly expanding the standard set of components and component libraries. If you're using JSF 2.x, tag your questions as such so that ...
10
votes
0answers
490 views
Weird behavior of JSF p:dataTable (first entry wrong in p:columns)
I have on a page two p:dataTable. The left one is mainly used for selection
<p:dataTable id="leftTable" var="item" value="#{bean.items}"
selection="#{bean.item}" ...
5
votes
0answers
194 views
JSF 2.0. Unable to get POST parameters and cookies in preRenderView event handler
I am trying to develop a service.
The point is that my index.xhtml should get parameters (either POST and GET) and cookies from HTTP Request.
I tried combination with <f:metadata> and ...
4
votes
0answers
62 views
Wrong JSF 2 ID Chaining
Situation
JavaServer Faces Version: 2.1.6
I got a parent composite component with two nested cc. One of them contains a HtmlPanelGroup, which has a component binding. I use that binding to ...
4
votes
0answers
184 views
JSF libraries for static content - or normal static files - performance?
We have two ways we can serve items like images, javascript, css.
A static area, say "/images/foo.png"
A JSF library, which renders something such as "/javax.faces.library/foo.png?ln=images"
The ...
4
votes
0answers
821 views
CDI @Conversation not propagated with handleNavigation()
I have a problem with the propagation of a long runnig conversation when I redirect the view by the handleNavigation() method. Here is my test code:
I have a conversationscoped bean and two views:
...
3
votes
0answers
31 views
Accessing Glassfish container managed login page using iPhone Safari from outside LAN results in “server stopped responding” error
Question
How do I allow unauthenticated users to be served a login.xhtml JSF2.0 Facelet page over https when attempting access to security constrained resources or otherwise requiring login ...
3
votes
0answers
91 views
Glassfish taking 20s to do hot deployment, is that right?
I'm working in a JSF project with Eclipse and Glassfish 3.1.2.
Every time I did a minor change and save it, Glassfish do the hot deployment, but is taking too much time to do that, about 20s, at ...
3
votes
0answers
52 views
Exception doesn't get redirected to error-page when myfaces.ERROR_HANDLING is set to false
I have implemented an error JSF page which gives basic information to users. It is triggered by the <error-page> tag in my web.xml
<error-page>
<location>/error</location>
...
3
votes
0answers
218 views
sortMode=“multiple” and lazy=“true” in <p:dataTable> clears multisort meta during pagination
I just enabled multiple sorting in the showcase code for "DataTable - Lazy Loading"
datatableLazy.xhtml
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
...
3
votes
0answers
422 views
Refreshing URL with JSF ajax request
I'm using JSF 2 with PrettyFaces and also the <h:link> and <f:param> tags extensively to get bookmarkable pages (It's great to finally forget about all those POST request in a JSF ...
3
votes
0answers
267 views
primefaces fileUpload miniatures
I want to upload multiple files but after I execute upload the miniature dissapears and I don't know which files I uploaded. Is there a way to keep miniatures with names after uploading?
2
votes
0answers
15 views
JSF2 with EJB3 and JPA - how best to package
I'm trying to teach myself a bit about EJB3 and JPA by creating some functionality that uses JSF2 as a front end, stateless EJB3 session beans to handle transactions and JPA to persist entities.
...
2
votes
0answers
65 views
java.lang.StackOverflowError Running JSF 2 example on Weblogic 12c
I followed the very basic tutorial found here example and cannot seem to get past the following error:
Error 500--Internal Server Error
java.lang.StackOverflowError
at ...
2
votes
0answers
81 views
How to send message MySQL to java(jsf project) ,when data insert or update?
I'm making a database in MySQL for tow java web Application. I need to send Messages MySQL to java web Application(tow java web Application),when data insert or update. But I'm new to MySQL and don't ...
2
votes
0answers
60 views
Netbeans 7.3 highlights error for xhtml when custom attributes are used in JSF components
We are running an existing project in JSF. And we have added some attributes to components which are not part of the tag library. For example we have added placeholder attribute to h:inputText ...
2
votes
0answers
75 views
Spring STS and code completion from the view (JSP or JSF) pages
Working with JBoss Tools and CDI I very much liked the fact that when I was editing a JSF page I had access to the CDI beans and autocomplete was very helpful.
Now with Spring MVC and STS I provide ...
2
votes
0answers
182 views
Bind PrimeFaces p:wizard to composite component
I need to have access to a PrimeFaces wizard from inside a composite component. I use Mojarra 2.1.13, PrimeFaces 3.4.2 and Spring Web Flow 2.3.1.RELEASE. My facelet looks like this:
<html ...
2
votes
0answers
101 views
JSF 2.0 Best practice for validating multiple fields that can be decoupled with bean
Seems Validating multiple fields in JSF2 using postValidate event is not a best practice.
<f:event type="postValidate" listener="#{bean.validate}" />
Because this is tightly coupled with bean ...
2
votes
0answers
77 views
Ajax Call method more than Once in jsf
I have a Composit Component that use Ajax on <p:selectOneButton/>, when Ajax call the actionListener on <p:commandButton/> it calls 10 times then run the method. I think the problem cause ...
2
votes
0answers
103 views
a4j:commandButton gives NullPointerException with t:inputFileUpload
Why is it that for the below code, when I use t:commandButton it works fine and in case of a4j:commandButton it gives NullPointerException on uploadedFile.getInputStream() ?
<h:form ...
2
votes
0answers
50 views
JSF 2 application with markup content stored in a database
I am developing a JSF 2 application which requires markup content to be stored in a database and modified on the fly. I need some advice on how to achieve this.
I want to store some page templates ...
2
votes
0answers
95 views
Define group of taglib definitions xmlns
Most of my .xhtml facelets starts with something like this
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
...
2
votes
0answers
109 views
JSF2 ui:repeat nullpointerexception on development stage
I have an issue (no big deal but wanted to see if anybody else had seen it) where I have an structure like the one below:
<ui:repeat var="categoria"
value="#{newsletterPage.categoriasNewsletter}" ...
2
votes
0answers
147 views
a4j:poll calls the value methods of every ui:repeat on the page
i have an a4j:poll in my pageTemplate that just rerenders a an Area that displays the number of unread messages a user has.
Problem is, that every value-Method of an ui:repeat on the page is called. ...
2
votes
0answers
404 views
How do I access the current TreeNode in primefaces tree (in mark-up or programmatically) without binding to UI component in managed bean?
I am using Primefaces 3.4.1 with the 2.2.0-m05 milestone build of Oracle's JSF 2.2 implementation. I am also using Spring 3.1 for dependency injection and some AOP.
I am trying to use the ...
2
votes
0answers
80 views
Starting a long task after page load
I'm currently working on a jsf based webapp. I'm using jsf 2.0, servlet 3 and primefaces.
The idea is:
After a User logs in he gets an info panel. This panel shows a loading sign. In the backend a ...
2
votes
0answers
139 views
Adding google.maps.latlng within a loop
I am new to Java Script. I am using it, in combination with Java Server Faces 2.0.
I want to add some points to define a Polilyne using GoogleMaps Apiv3. My problem is that I can't add a FOR ...
2
votes
0answers
288 views
JSF 2 DataTable with multiple headers on dynamic columns
I'm developing a data-centric Web Application using JSF 2.1 and PrimeFaces 3.4.
As a result of a specific query, I must display the results in a bi-dimensional data table with some dynamic columns ...
2
votes
0answers
328 views
In JSF , how to list in editable datatable without initialing in init block or in constructor
In my application I am using primefaces editable datatable, those List(cmFieldsList) values need to be rendered dynamically based on request parameters(blkcode).
If I initialize the list in ...
2
votes
0answers
420 views
PrimePush chat is not working
my target is on page load to subscribe two users in chat (teacher and student), and they can send messages to each others, so here's what i did:
1- BackingBean:
package com.myapp.beans;
import ...
2
votes
0answers
260 views
Can multiple EL resolver use in JSF 2.0?
I would like to know about EL resolvers in JSF. Can we use multiple EL resolvers in a project?. Let's say, If I use Spring's DelegatingVariableResolver, can I add another EL resolver like Seam's ...
2
votes
0answers
238 views
Performance issues with J2EE application on JBoss 7.1.1Final
recently we have deployed J2EE application on JBoss 7.1.1Final. This application is using CDI (Weld implementation), JSF 2.1 (Mojarra), Seam 3 and Hibernate 4. When we're experiencing higher load, the ...
2
votes
0answers
75 views
rich:tree population from injected EJB
I have code for population of richtree.
Here is mainmenu.xhtml consist of simplest declaration of richtree:
<rich:tree value="#{menu.stationNodes}" var="station">
<rich:treeNode>
...
2
votes
0answers
1k views
Clicking on p:selectBooleanCheckbox should enable/disable the input text
When the checkbox is selected, the corresponding input text should be enabled. But the permit property is not set, nor updateRoles listener is called. I get no exceptions, no indication of something ...
2
votes
0answers
323 views
Unsupported Exception in jsf 2.0 + springwebflow 2.0
I started to create a project using the following technologies
JSF 2.0
Springwebflow 2.0
Primefaces 2.2.1
Richfaces 3.3
Appserver : JBOSS-AS-7.1.1 Final
My application got deployed successfully, ...
2
votes
0answers
151 views
User entered values disappear after validation in JSF
I have h:selectOneMenu component in my page. User has to select "Yes" or "No" there, initial value is null (labelled "Unknown"). In bean it's Boolean, so null is possible. If user selects valid value, ...
2
votes
0answers
778 views
p:commandButton doesn't call bean's method in an <ui:include> page
I'm having a problem when I include dynamically a page with <ui:include>, the action and actionlistener associated with the <p:commandButton> component is not being invoked.
I've tried to ...
2
votes
0answers
206 views
Generic Interface causes javax.el.PropertyNotFoundException
I'm struggling with some error that occurs in some (environment) constellations.
- If I run my app on Tomcat in Eclipse-Webtools on WinXP it works.
- Running it in Tomcat on WinXP or Linux the error ...
2
votes
0answers
266 views
JSF 2.1.3 - IE 8 only - mojarra.ab(…) crash browser
I have a page with this code (generated by JSF 2.1.3 running on Glassfish 3.1.1
<a class="pagenumber"
onclick="mojarra.ab(this,event,'click',0,'main:coupon-all main:page-top ...
2
votes
0answers
307 views
Using EL in attribute of composite component
My JSF custom component code:
<composite:interface name="translation">
<composite:attribute name="fieldName"/>
<composite:attribute name="required" default="true" />
...
2
votes
0answers
311 views
How to limit to store the no of views in session for prime faces application
We are using primefaces 2.2.1 version in our application. We would like to restrict to store the no of views storing in session to 3. I have configured my web.xml like as :
<context-param>
...
2
votes
0answers
151 views
Design/Architecture for a 'content editors' Java EE 6 web app
[Rev.02: Due to no answers for Rev.01, let me please re-specify my question]:
For a Java EE web app_ with JSF 2.x frontend the following URLs shall be in place:
Initially (static case, and as ...
2
votes
0answers
242 views
Doesn't viewParam work with @RequestScoped bean and ajax events?
After reading some question and answers in stackoverflow (like this ViewParam vs @ManagedProperty(value = "#{param.id}")) I'm not sure about the possibility of using viewParam with ...
2
votes
0answers
316 views
How to draw a rubber band line on a Google Map (preferably with PrimeFaces)?
I found this link for drawing a rectangle on a google map and was able to make it work as a test just using the raw google map code.
Google map rectangle example
However, it really does not fit into ...
2
votes
0answers
834 views
Primefaces Tree does not expand if you select a node first
I am using primefaces 2 and a backing bean to display the tree component in two different facelets pages. On the first page, the tree displays, expands, and I can select items from it just fine.
...
2
votes
0answers
487 views
JSF Exception - 404 500 codes
I have a JSF2 application which uses primefaces 3.0.
When I include 404 error code or 500 error code in my web.xml
<error-page>
<error-code>404</error-code>
...
2
votes
0answers
523 views
How to bundle several JSF2 composite component libraries under one namespace
We have a bunch of JSF 1.2 facelets components (ui:composition). They are organized in different folders like this...
facelets
/tags
/inputfields
/layout
/core
/...
They ...
2
votes
0answers
290 views
copy/paste image in rich editor
I'm using Rich-faces editor in my application, while using the application through Firefox 4.0.1, I realized that i can copy/paste image into the editor. The pasted image is base64 encoded.
But the ...
2
votes
0answers
547 views
Inconsistent Composite Component clientId when using a MethodExpression attribute
Hi suppose you have the following composite component:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html ...
2
votes
0answers
219 views
JSF 2.0 - how to get the property path of a jsf component?
is there a way to get from a JSF component the property path which is obviously used for updating the model?
I am asking cause we have a concept where the backend validates the whole stuff. Don't ask ...


