Multiple message resource property file in Struts
- By Viral Patel on November 25, 2008
Recently I came up with a requirement where in we have to display messages from multiple bundle resource (message resource) property files in Struts using <bean:message>.
Following are the steps for the same:
- Make an entry of message resource file name in struts-config.xml file.
<message-resources parameter="net.viralpatel.struts.MessageResource" key="myResource"></message-resources> <message-resources parameter="net.viralpatel.struts.NewMessageResource" key="myOtherResource"></message-resources>
- Once this is done, the message resource file can be accessed by using the key (in this case we have myResource & myOtherResource). The key should be used in <bean:message> tag in jsp to display perticular message from the resource property file. bundle=”" attribute of <bean:message> is used to identify the perticular property file.
<bean:message bundle="myResource" key="somekey.in.myresource" /> <bean:message bundle="myOtherResource" key="somekey.in.myotherresource"/>
Get our Articles via Email. Enter your email address.
what is switch action in Struts.can you explain with an example.Can you explain ForwardAction,IncludeAction,DispatchAction,LookupDispatchAction,SwitchAction with a detailed example.
what is use use of redirect attribute and how do we can achieve sendRediect in struts?
please send me the code.
Thanks in advance.