This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
Jag Bains wrote:Hi
I have a backing been which extends AbstractPageBean.
Makes no sense to me. It is not part of Sun JSF API. What library are you talking about? Are you using some visual editor which autogenerates some code heap for you? If so, do you actually understand that code in terms that you´re perfectly able to write it all yourself? If not, I would recommend to stop using the visual editor for a while and write JSF code yourself until you´ve a good grasp on JSF.
I want to output a message from the bundle
e.g.
this.info("message fro m bundle");
How do I do this?
Use ResourceBundle API to load the desired message bundle.
Use FacesContext#addMessage() to add a new FacesMessage to the context.
Jag Bains
Ranch Hand
Joined: Nov 19, 2002
Posts: 39
posted
0
Sorry I should have mentioned that I am using Netbeans 6.5
My JSF page is (login.jsp):
I have a webuijsf:messageGroup id="messageGroup1" on the page and I want to populate it with a message from the page bean login.java as follows:
In my loginBtn_action, I want to display a message that is displayed in messageGroup1.
What should I do to display a message from the resource bundle?
Bauke Scholtz
Ranch Hand
Joined: Oct 08, 2006
Posts: 2458
posted
0
Netbeans is just an IDE.
As said, use ResourceBundle API to load the desired message bundle and use FacesContext#addMessage() to add a new FacesMessage to the context.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: How do I use message bundles from my backing bean