• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

get value from propertie file?

 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

How do I get a value out of a property file (name=value) from inside a jsp. I am using struts as well?

Many Thanks
 
Ranch Hand
Posts: 415
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There is no inbuilt thing as such in struts for doing that .but you always have an option of placing the same key and value in the ApplicationResources.properties and then read it using the bean:message tag .but it all depends on where you need to place that resource
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For example in a web application ,I can have the property file ApplicationResources.properties in which I can have the pair,page.title=Home,which I can retrieve in my .jsp as <bean:message key="page.title"/>.
But for this,I should have the entry <message-resources parameter="ApplicationResources" /> in my struts-config.xml.

Hope this would help.Pls try.
 
reply
    Bookmark Topic Watch Topic
  • New Topic