1. JSF initialize application-scope bean when context initialized stackoverflow.comI'm building a JSF+Facelets web app, one piece of which is a method that scans a directory every so often and indexes any changes. This method is part of a ... |
2. what is none scope bean and when to use it? stackoverflow.comcould some explain what a none scope is and purpose of it? Suppose if i have a bean in
and say i inject none ... |
3. Why having multiple managed beans? stackoverflow.comThis is more of a general question, so that I a better understand about JSF and managed bean. So when people having multiple managed bean, is it solely because they want ... |
4. Custom Scoped Bean JSF 2.0 stackoverflow.comHi I have a bean and I want to define it as a CustomScoped Bean based on time, I mean I want to destroy the bean after a specific period of idle ... |
5. Invoking application scoped bean jsf stackoverflow.comIn my applicatoin I have a application scoped bean, which I call it like this:
|
6. JSF2 (Mojarra) View Scope Managed Bean wants all members to be Serializable stackoverflow.comI am trying to convert a session scoped JSF managed bean to view scoped. However, when I try to access the xhtml page for this bean, then i get the following ... |
7. JSF 2.0 Accessing Application Scope bean from another Bean stackoverflow.comI am using jsf 2.0 and I have two bean Navigation (Application Scope ) and Module (Request Scope). I want to use methods of Navigation bean in Module Bean. I am ... |
8. Backing Beans - which of them should be scoped? stackoverflow.comI have two kinds of backing beans in my JSF application:
|
9. View scoped managed bean with setPropertyActionListener stackoverflow.comI cant seem to get the view scoped managed bean to work with setPropertyActionListener:
|
10. Help me to understand JSF managed bean scope from concurrency view stackoverflow.comCan 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 ... |
11. How to choose the right bean scope? stackoverflow.comI noticed that there are different bean scopes like:
What is the purpose of each? How do I choose a proper scope for my bean?
|
12. Using Bean (View Scope) in JSF to show data stackoverflow.comI'm creating an web application, using JSF (2.0). It has "ViewProducts.xhtml" to view Product with page. Each time this page loaded, if parameter has some thing (Eg: page=1 (ViewProduct.xhtml?page=1)), it's will automatically ... |
13. What managed bean scope should I use? stackoverflow.comI have 3 different page where I use list of Users. First page contains dataTable with users from one session scope managed bean. On that page I can change selected user details. Second ... |
14. Bean scope in model Panel stackoverflow.comI Have created an web application using JSF (1.2). I have Used 'session' scope in faces-config.xml. Now i am Moving the application from JSF (1.2) to JSF (2.0) . ... |
15. Bean's scope coderanch.com |
16. Application Scoped Managed Bean coderanch.com |
17. managed-bean-scope = wizard scope coderanch.com |
18. Default scope of managed-bean-scope? coderanch.com |
19. managed bean scope coderanch.comHi, When I keep scope of my managed bean as session, everything works fine but the moment I change it to request, error page is displayed. There is no error / exception in the server log. When I checked boot.log file , somewhere I found the first 2 lines & then it forwards control to error.jsp - 20:23:13,934 DEBUG [JspStateManagerImpl] Exiting ... |
20. Backing Bean Scope (Best Practices?) coderanch.com |
21. Caching in application scope JSF managed bean coderanch.comThanks. In fact, I'm wondering if it's a best practice to load a catalog of products in an application scope JSF managed bean from startup, or to use caching after the first call of a product. And is it possible to update cache using setter methods in the managed bean. Thanks in advance. Amine. |
22. How do you preload a JSF application scope bean? coderanch.com |
23. When is a backing bean created and stored in the corresponding scope? coderanch.com |
24. Using view-scoped beans during the restore view phase coderanch.comI have come across an issue regarding the use of view-scoped beans on components where the value expression is evaluated as part of the buildView() process. Essentially, it seems that the view scope is only restored AFTER the component tree has been built which means it is not possible to do the following: |
25. Synchronising access to application scoped managed beans coderanch.comI think you've got apples mixed in with the oranges here. It's generally not recommended to use Domain Model objects (including EJBs) as backing beans or managed beans. If you're interested in some of the reasons, do a quick search of this forum - the issue has been discussed 2 or 3 times this year already. In the original EJB architecture, ... |
26. Hooking Beans Based on Scope coderanch.com |
27. Backing bean scope problem coderanch.comI have a managed bean and it's scope is defined as managed (in faces-config.xml). When i go to the page for which this bean is the backing bean, the constructor is called. But when i go through the app and come back to the page, the construtor is not called again. Why? Isn't this behaviour of session scoped bean? |