JSF+MySQL时区设置

如同在Java中进行数学计算时,直接使用Float会导致精度损失,在JSF中要保证日期时间显示准确或相减得到正确的值,必须注意时区设置。

1、java全局时区设置

 

[csharp] view plaincopyprint?
  1. //设置全局时区  
  2. TimeZone tz = TimeZone.getTimeZone("Asia/Shanghai"); 
  3. TimeZone.setDefault(tz); 
//设置全局时区
TimeZone tz = TimeZone.getTimeZone("Asia/Shanghai");
TimeZone.setDefault(tz);

 

2、jsf页面中时区设置

 

[html] view plaincopyprint?
  1. <h:outputTextvalue="#{YourJavaBean.reqDate}"> 
  2.     <f:convertDateTimepattern="yyyy-MM-dd HH:mm"timeZone="GMT+8"/> 
  3. </h:outputText> 
<h:outputText value="#{YourJavaBean.reqDate}" >
	<f:convertDateTime pattern="yyyy-MM-dd HH:mm" timeZone="GMT+8"/>
</h:outputText>

 

3、如果使用MySQL,需要修改my.ini

在[mysqld]下设置default-time-zone ='+8:00'

posted on 2012-11-08 18:43  sslshop  阅读(250)  评论(0编辑  收藏  举报

导航