我想根據用戶的TimeZone
使用不同的TimeZone
。如何根據用戶更改TimeZone TimeZone
問題:有什麼功能可以在JSF
或Seam
中設置默認值嗎? 這將影響整個應用程序。
我希望,該功能將影響s:convertDateTime
,f:convertDateTime
,p:calendar
,等等......每次我不使用timezone
屬性使用時間。
我也嘗試使用Seam
組件TimeZoneSelector
如下。
@In
private TimeZoneSelector timeZoneSelector;
....
timeZoneSelector.setTimeZone(user.getTimeZone());
但是,它自動不影響<f:convertDateTime pattern="hh:mm a"/>
。 我必須再次檢索TimeZone
表單支持bean。
<f:convertDateTime pattern="hh:mm a" timeZone="#{mybean.timeZone}"/>
太赫茲,爲你的答案。 'Seam'有什麼辦法嗎? – CycDemo
也許這篇文檔中的[段落](http://www.seamframework.org/Documentation/JSFEnhancementDefaultApplicationTimeZone)將幫助你。 – kapand
我已經得到了這個。我想,這不是我的問題的答案。 – CycDemo