Help coderanch get a
new server
by contributing to the fundraiser
  • 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Missing message for key

 
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I am trying an example from Jakarta Struts Live book.
My application isnt able to read the application.properties file or not able to refence the key values and I end up with errors like "Missing message for key .."

In struts-config.xml I have
<message-resources parameter="application" />
when application.properties is kept directly under the source folder.

Inside application.properties I have message and key pairs as :

userRegistration.firstName.problem=The first name was blank.
userRegistration.firstName=First Name.
userRegistration.lastName=Last Name.
userRegistration.username=Username.

Inside my JSP form I have

<bean:message key="userRegistration.firstName"/>
to reference the value from the resource file.

I see errors like 2005-03-18 17:01:20 StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exceptionjavax.servlet.jsp.JspException: Missing message for key "userRegistration.username" at org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:235)

when I am trying to deploy the app.

It deploys fine, but when I try to access the JSP, it shows me an error javax.servlet.ServletException: Missing message for key "userRegistration.firstName"

I tried changing the location of application.properties, to no avail.
Using Netbeans 4.1 , J2SE 1.5 , copied latest struts lib from Apache.

Could you advise ?
 
pie sneak
Posts: 4727
Mac VI Editor Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Do you have it in your struts-config? If so, please post your message-resources tag.
 
Manzar Zaidi
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for looking this up Marc.

In struts-config.xml I have
<message-resources parameter="application" />
when application.properties is kept directly under the source folder.

<message-resources parameter="resources.application" />
when application.properties is kept under a folder names resources under the source folder.
 
reply
    Bookmark Topic Watch Topic
  • New Topic