Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

if I use my app within development environment, the currency are all correct converted by JSF. But when I deploy it to my production server, which is hosted somewhere else... the converts are not correct (see below). Using the same browser... I think the locale is correct set by browser request.... is there anything else I could try to let JSF convert the currency correct?

Thank you!

<f:convertNumber currencyCode="EUR" type="currency" />

On localhost: 1.231,34 €

On prod host: EUR1,231.34

The prod host converts it to american style... but I expected the german style.

share|improve this question

1 Answer

up vote 0 down vote accepted

i think you need to add the locale to the convertNumber tag. The prod server's JVM might be set to a different/default locale.

share|improve this answer
Yes, when I log the viewRoot locale of JSF, it sais en_US. This a bit confusing to me, because not the server locale (which is german by the way) should determine jsf locale, the Browser Request should do it... well. The solution is to have a Locale property in a Session bean and to use the locale="#{sessionBean.locale}" attribute of f:convertNumber. Thank you – SpecialAgent Feb 22 '12 at 6:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.