JSF f:convertNumber 仅在本地主机上正确转换货币
在开发环境中使用我的应用程序时,JSF 都能正确转换货币。 但是,当我将其部署到托管在其他地方的生产服务器时,转换不正确(见下文)。
我认为浏览器请求正确设置了区域设置(使用相同的浏览器)...
我还可以尝试让 JSF 正确转换货币吗?
谢谢你!
<f:convertNumber currencyCode="EUR" type="currency" />
On localhost: 1.231,34 €
On prod host: EUR1,231.34
产品主持人将其转换为美式风格,但我期望德式风格。
When using my app within the development environment, the currencies are all correctly converted by JSF.
But when I deploy it to my production server, which is hosted somewhere else, the conversions are not correct (see below).
I think the locale is correctly set by browser request (using the same browser)...
Is there anything else I could try to get JSF to convert the currency correctly?
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您需要将区域设置添加到
convertNumber
标记中。产品服务器的 JVM 可能设置为不同/默认区域设置。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.