Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
2k views

ViewParam vs @ManagedProperty(value = “#{param.id}”)

What is the difference between defining View Params like this: <f:metadata> <f:viewParam name="id" value="#{someBean.id}"/> </f:metadata> And defining the property in the ...
6
votes
1answer
2k views

sessionscoped managed bean vs stateful ejb

If I have a @ManagedBean that's @SessionScoped, why would I use a @Stateful EJB? I used it before for shopping carts and maintaining a conversational state, but since a managed bean will be kept ...
5
votes
1answer
3k views

How to invalidate session in JSF 2.0?

What is the best possible way to invalidate session within a JSF 2.0 application? I know JSF itself does not handle session. So far I could find private void reset(){ HttpSession session = ...
5
votes
2answers
2k views

JSF - How do I force an application-scoped bean to instantiate at application startup?

I can't seem to find a way to force an application-scoped managed bean to be instantiated/initialized when the web app is started. It seems that application-scoped beans get lazy-instantiated the ...
4
votes
1answer
94 views

what to use, managed beans (backing beans) or entity beans?

I see a lot of examples marking beans as entity beans (@Entity) & named beans (CDI), so as to avoid creating 2 classes (managed bean & entity bean) and also to make use of Bean Validation so ...
4
votes
3answers
666 views

How to register a JSF managed bean programmatically?

I'd like to register/add a Managed Bean class programmatically (from within a Servlet init()) into application scope. How can I do that with JSF 1.2?
4
votes
2answers
336 views

Where should I open / close JMS connections in a JSF ManagedBean?

In a simple demo web app using JSF 2 and Ajax, there is a method in the ManagedBean which receives messages from a JMS queue: @ManagedBean public class Bean { @Resource(mappedName = ...
4
votes
2answers
2k views

How does JSF find beans annotated with @ManagedBean?

As far as I know, for using @Annotations (or [Attributes] in C#) you have to have a reference to the class metadata, so that you can ask if the class is annotated (attributed) or not. My question is ...
4
votes
4answers
5k views

JSF 2 localization (managed bean)

I have a properties file for localization: foo=Bar title=Widget Application This is tied in as a resource-bundle in the faces-config: <resource-bundle> ...
3
votes
2answers
3k views

JSF 2 - How can I get a message bundle string from inside a managed bean?

I would like to be able to retrieve a string from a message bundle from inside a JSF 2 managed bean. This would be done in situations where the string is used as the summary or details parameter in a ...
3
votes
2answers
2k views

How to redirect from a ManagedBean for when the request sent is an Ajax request?

I am using PrimeFaces with JSF2. I am trying to authenticate user by sending login and password as an Ajax request. And in the action method of the backing bean, I am trying to validate user and ...
2
votes
1answer
40 views

JSF 2.0 manage a user

I am coming to Java from Rails and PHP, so my thinking here may be tainted. I would like to implement a login system similar to ones I have done in my other systems (I understand you can manage login ...
2
votes
1answer
176 views

JSF managed-bean EJB injection

I have an EJB (PersonManager) in the Enterprise Application modul, which injects another EJB (Person): @Stateful public class PersonManager implements PersonManagerLocal { @EJB private ...
2
votes
1answer
63 views

set <td> color in <h:column> from backing bean

is there any way i can set the color of the text in the table data in jsf? i want to have different colors for #{_component.displayName} depending on the return value of a backing bean method. ...
2
votes
1answer
157 views

session scoped managed bean vs stateful bean vs httpsession

i need a way to save a user chosen configuration composed of different parts. each part is chosen on a separate page, from a list supplied by a managed bean (one per part type). now the fun part. i ...
2
votes
1answer
130 views

jboss-as 7 class loading within a war with ApplicationScoped eager ManagedBean

I have this kind of structure in my Maven project: WEB-INF/lib - a.jar - Registry.class (@ApplicationScoped, @ManagedBean(eager=true) - b.jar - Module.class (@ApplicationScoped, ...
2
votes
1answer
206 views

JSF Named Bean, Eager application scoped (aka @ManagedBean(eager=true) )

Is there any way to initialize Named Bean annotaded by javax.inject.Named/javax.enterprise.context.ApplicationScoped like @ManagedBean(eager=true) from javax.faces package? @Named @ApplicationScoped ...
2
votes
0answers
254 views

@EJB in @ViewScoped @ManagedBean causes java.io.NotSerializableException

I've read @EJB in @ViewScoped managed bean causes java.io.NotSerializableException, but my state saving setting is server. Here is what I have: web.xml: <?xml version="1.0" encoding="UTF-8"?> ...
2
votes
2answers
141 views

Can CDI managed beans and JSF managed beans talk to each other?

I have a Tomcat 6 JSF web application that I'd like to set up with CDI beans. I will have to convert the project to CDI gradually though. My question is: can CDI beans and traditional JSF managed ...
2
votes
2answers
139 views

How to reference JSF managed beans which are provided in a JAR file?

I have a WAR file with the following structure: The JSF managed bean BusinessObjectTypeListController is located in commons-web-1.0.jar in /WEB-INF/lib and referenced in ...
2
votes
2answers
132 views

Are both getters and setters mandatory in JSF's managed beans?

I have a JSF component which is initialized from a managed bean's getter getProperty(). Is it mandatory to also have a setter setProperty() in that managed bean?
2
votes
1answer
793 views

Getting a path to a resource file from managed-bean in JSF

I have this situation: I am trying to remove an old avatar image for a user before putting a new one from the managed bean. String fileName = "resources/img/useravatars/" + ...
2
votes
1answer
853 views

ManagedProperty not injected in @FacesConverter

I'm trying to inject a ManagedBean in my FacesConverted the following way: @ManagedBean @RequestScoped @FacesConverter(forClass = Group.class) public class GroupConverter implements Converter { ...
2
votes
2answers
270 views

jsf dynamic change of managedbean

How can I dynamically change managed bean of "value" attribute? For example, I have h:inputText and, depending on typed-in text, managed bean must be #{studentBean.login} or #{lecturerBean.login}. In ...
2
votes
3answers
381 views

JSF LInk to View Page

I have a page with a data table. I want some of the items in the tables to be linked to a corresponding view page. For example, right now I have a table with no links: <h:dataTable var="bean" ...
2
votes
3answers
693 views

java.lang.NullPointerException, when i am inside the constructor of a managed bean invoking methods from other beans

When I am inside the constructor of a managed and trying to reach out to other methods from other beans, I got java.lang.NullPointerException. Is there some kind of specification that not allow ...
1
vote
1answer
32 views

save selected values in multiple h:selectManyCheckbox in same form

I have a JSF page that contains a form with several elements, that correspond to different configurable attributes that the user can select, say <h:form> <h:selectManyCheckbox ...
1
vote
1answer
47 views

ManagedProperty not working

I have problem with JSF 2 property binding and honestly I hit a wall here.. What I want to accomplish is this: a request-scoped bean (loginBean) process login action and stores username in the ...
1
vote
0answers
83 views

JSF2 ExceptionHandler doesn't handle correclty bean instantiation exceptions

I'm using JSF 2.0 ExcepctionHandler mechanism to handle all exception in my application. public void handle() throws FacesException { FacesContext fc = FacesContext.getCurrentInstance(); for ...
1
vote
0answers
82 views

JSF injected bean doesn't work with Primefaces tree

I have a managed bean: @ManagedBean @ViewScoped public class BeanA implements Serializable { private TreeNode tree; ... } and I want to inject it into @ManagedBean @ViewScoped public class ...
1
vote
1answer
64 views

JSF el not resolving

I have the following line in a JSF page: <h:commandLink action="#{myBean.test}" value="Wizard Step"></h:commandLink> I expect that when the page is loaded, the Bean corresponding to ...
1
vote
0answers
59 views

Initialize new Managed-Bean property (Pojo) in faces-config

At the oracle JavaEE 6 documentation http://docs.oracle.com/javaee/6/tutorial/doc/bnawq.html#bnawy it seems like an Instance of a Managed-Bean property is initialized using: ...
1
vote
1answer
39 views

JSF gets my dynamic url wrong

I'm trying to get google map image with the following code: <img ...
1
vote
1answer
83 views

@ManagedProperty doesn't work when manually instantiating the bean from another bean

I instantiated a request bean from another request bean, new LoginManager(); But the property which is annotated with @ManagedProperty doesn't get the value from the asked reference, only in case ...
1
vote
0answers
34 views

Store conversation state in managed beans or SFSB?

I'm a Java EE beginner and now working on a web app, using JSF,EJB and JPA as the three tiers. The website consists of several apps like twitter and ebay. Their accounts are all binded to the main ...
1
vote
1answer
114 views

Set Managed Bean as parameter in Composite Component

Is there a way of setting a managed bean parameter in a composite component and then leaving the using classes to decide which actual managed bean to use? something along the lines of: comp.xhtml ...
1
vote
1answer
61 views

use jsf managed bean in facelet custom component as in jsf within jsp

I have jsf application in which I have to use a facelet custom component (defined in a custom tag library). In order to achieve this I have done the following: - created the component, with ...
1
vote
1answer
65 views

JSF manged property for multivalues

As suggested by BalusC as an answer to this question, I wanto to create a managed property like this: @ManagedProperty("#{paramValues.freetext}") private String[] ftValues; public String[] ...
1
vote
1answer
74 views

Can a Java ManagedBean method return null?

I have always returned null when I wanted the user to return to the same page. For example, if the user requests to Edit Groups, but he doesn't have access to this, I usually return null and print ...
1
vote
1answer
228 views

Refresh managed session bean in JSF 2.0

After I commit some data into the database I want my session beans to automatically refresh themselves to reflect the recently committed data. How do I achieve this when using managed session beans ...
1
vote
1answer
73 views

How to reference Java Collection entry from JSF 2 ManagedProperty?

I have an application that has a bean that holds a list of Contacts which are referenced from various domain objects throughout the application: @ManagedBean @SessionScoped public class ContactHolder ...
1
vote
1answer
305 views

JSF Managed Bean method call using URL parameters

I have a Session Scoped managed bean that backs my web-app. In this web-app I would like to have the ability for the user to execute a URL containing a user id and a date. This will then trigger a ...
1
vote
1answer
448 views

@PostConstruct didn't get called by JSF if ManagedBean is inside jar library

I'm running with the following problem. I have a few Managed Beans that are shared between, at this moment, two JSF applications. As I don't want to copy and paste the code in the two (more in the ...
1
vote
1answer
138 views

JSF - Two instanciations of the managed-bean

When I access to my page for the fist time, the managed bean used by the page is instanciate two times (I pass two times in the contructor, with the same stack trace) : Daemon Thread ...
1
vote
0answers
247 views

Any one had Logging interceptor for JSF 2.0 Managed bean working

I have a managed bean with lots of methods. I want to log the entry and exit times of each method invocation . I thought of reusing the Interceptor that works successfully with my EJB's. I am having ...
1
vote
2answers
176 views

How to add multiple instances of JSF 2 managed beans to Java Collection?

I'm trying to wrap my head around some basic JSF 2 concepts. For instance, if I have a managed bean, Bean1: @ManagedBean public class Bean1 { private String foo; private String bar; } and ...
1
vote
1answer
86 views

ejbFacade is null

I call the managedBean OverzichtAlle.java from the jsf page overzichtAlleGroepen.xhtml But when I get on this page i get the errormessage can't instantiate managedBeans.OverzichtAlle due to a ...
1
vote
1answer
212 views

Help me to understand JSF managed bean scope from concurrency view

Can anyone help me to understand the JSF managed bean scope from a concurrency perspective ? My Understanding: Once i have a bean scoped in a session scope that's mean : there is only one user can ...
1
vote
1answer
153 views

JSF 2 - Where does a @ViewScoped bean live between requests?

I'm trying to better understand the low-level workings of a @ViewScoped bean in JSF 2. Where does the server keep the view-scoped bean between requests? I've noticed that my view-scoped beans need to ...
1
vote
2answers
677 views

How to integrate a time picker in Richfaces and bind it to a jsf managed bean

Could you please explain me how to integrate a time picker component into my JSF/Richfaces web app, and bind its value to a managed bean? I know the rich:calendar component comes out with both a date ...

1 2 3