• 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

Internationalization in the Model

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a Struts question about i18n that I have not yet seen discussed: how to properly handle internationalization in the model? I can get the view to work (considering switching to Velocity with VelStruts).

When my app gets data from the data store (NOT a SQL database), it is passing data back to the view as caption/data pairs. Right now, the captions are hard-coded in my model Java code. I have to figure out how to access the correct resource bundle in the model.

Should I be passing the Locale object in from the Action?

Thanks in advance.

-Bruce
 
Ranch Hand
Posts: 415
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
see the internationalization in the model shoudl be handled by urself........and its better to pass the locale object from the action clss to ur model

It all depends on the way in which u can distribute in MVC ....one more way is after getting data from the model , u can use the locale in action class itself to access the resource bundle and do something ....but i dont feel like its better to pass locale to the model
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic