Time Zone"

From Documentation
m (remove empty version history (via JWB))
 
(16 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{ZKDevelopersGuidePageHeader}}
+
{{ZKDevelopersReferencePageHeader}}
  
 
__TOC__
 
__TOC__
  
The time zone used to process requests and events is, by default, determined by the JVM's preferences (by use of the <tt>getDefault</tt> method of <tt>java.util.TimeZone</tt>).
+
=Overview=
 +
The time zone used to process requests and events is, by default, determined by the JVM's default (i.e. [https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#getDefault() java.util.TimeZone.getDefault()]).
  
'''Note''': Unlike locale, there is no standard way to determine the time zone for each browser.
+
In this section, we will discuss how to configure ZK to use a time zone other than JVM's default. For example, you might configure ZK to use the preferred time zone that a user specified in his or her profile.
  
Like Locale, the time zone for a given application and session is configurable. For example, you might want to use the preferred time zone that a user specified in his or her profile, if you maintain user profiles in the server.
+
=The Decision Sequence of Server Time Zone=
  
 +
The time zone is decided in the following sequence.
  
=== The Application Attribute: <tt>px_preferred_time_zone</tt> ===
+
# It checks if an attribute called <code>org.zkoss.web.preferred.timeZone</code> defined in the HTTP session (aka., <javadoc type="interface">org.zkoss.zk.ui.Session</javadoc>). If so, use it.
[Since 3.6.3]
+
# It checks if an attribute called <code>org.zkoss.web.preferred.timeZone</code> defined in the Servlet context (aka., <javadoc type="interface">org.zkoss.zk.ui.Application</javadoc>). If so, use it.
 +
# It checks if a property called <code>org.zkoss.web.preferred.timeZone</code> defined in the library property (i.e., <javadoc>org.zkoss.lang.Library</javadoc>). If so, use it.
 +
# If none of them is found, JVM's default will be used.
 +
#: You can enforce the time zone with JVM option: <code>-Duser.timezone="Asia/Taipei"</code>
  
If you want to use the same time zone for all users, you can specify the time zone in the application attribute (<tt>WebApp</tt>, aka., <tt>ServletContext</tt>) called <tt>px_preferred_time_zone</tt>.
+
With this sequence in mind, you could configure ZK to use the correct time zone based on the application requirements.
  
'''Tip''': To avoid typo, you can use the constant: <javadoc method="PREFERRED_TIME_ZONE">org.zkoss.web.Attributes</javadoc>.
+
==Application-level Time Zone==
  
=== The Session Attribute: <tt>px_preferred_time_zone</tt> ===
+
If you want to use the same time zone for all users of the same application, you can specify the time zone in the library property. For example, you could specify the following in <code>WEB-INF/zk.xml</code>:
ZK will check if a session attribute called <tt>px_preferred_time_zone</tt> is defined. If defined, it uses as the default time zone for the session instead of the system default. Thus, you can control the time zone of a session by storing the preferred time zone in this attribute, after, say, a user logins as depicted in the previous section.
 
  
'''Tip''': To avoid typo, you can use the constant: <javadoc method="PREFERRED_TIME_ZONE">org.zkoss.web.Attributes</javadoc>
+
<source lang="xml">
 +
<library-property>
 +
    <name>org.zkoss.web.preferred.timeZone</name>
 +
    <value>GMT-8</value>
 +
</library-property>
 +
</source>
  
=== The Request Interceptor ===
+
* Line 3: the value can be anything accepted by <code>java.util.TimeZone.getTimeZone()</code>
Like Locale, you can prepare the time zone for the given session by use of the request interceptor.
 
  
 +
Alternatively, if you prefer to specify it in Java, you can invoke <javadoc method="setProperty(java.lang.String, java.lang.String)">org.zkoss.lang.Library</javadoc>. Furthermore, to avoid typos, you could use <javadoc method="PREFERRED_TIME_ZONE">org.zkoss.web.Attributes</javadoc> as follows.
  
{{ ZKDevelopersGuidePageFooter}}
+
<source lang="java">
 +
Library.setProperty(Attributes.PREFERRED_TIME_ZONE, "PST");
 +
</source>
 +
 
 +
== Per-user Time Zone ==
 +
 
 +
Because ZK will check if a session attribute is for the default time zone, you could configure ZK to have per-user time zone by specifying the attribute in a session.
 +
 
 +
For example, you can do this when a user logins.
 +
 
 +
<source lang="java" >
 +
void login(String username, String password) {
 +
    //check password
 +
    ...
 +
    TimeZone preferredTimeZone = ...; //decide the time zone (from, say, database)
 +
    session.setAttribute(Attributes.PREFERRED_TIME_ZONE, preferredTimeZone);
 +
    ...
 +
}
 +
</source>
 +
 
 +
= Current Time Zone=
 +
[https://www.zkoss.org/javadoc/latest/zk/org/zkoss/util/TimeZones.html#getCurrent-- TimeZones.getCurrent()] returns the current (server) time zone determined by the sequence mentioned above.
 +
 
 +
= The Request Interceptor =
 +
 
 +
Like configuring a locale, you can prepare the time zone for the given session by the use of the request interceptor. Please refer to [[ZK_Developer's_Reference/Internationalization/Locale#The_Request_Interceptor|the Locale section]] for more information.
 +
 
 +
 
 +
 
 +
{{ZKDevelopersReferencePageFooter}}

Latest revision as of 04:36, 5 February 2024

Overview

The time zone used to process requests and events is, by default, determined by the JVM's default (i.e. java.util.TimeZone.getDefault()).

In this section, we will discuss how to configure ZK to use a time zone other than JVM's default. For example, you might configure ZK to use the preferred time zone that a user specified in his or her profile.

The Decision Sequence of Server Time Zone

The time zone is decided in the following sequence.

  1. It checks if an attribute called org.zkoss.web.preferred.timeZone defined in the HTTP session (aka., Session). If so, use it.
  2. It checks if an attribute called org.zkoss.web.preferred.timeZone defined in the Servlet context (aka., Application). If so, use it.
  3. It checks if a property called org.zkoss.web.preferred.timeZone defined in the library property (i.e., Library). If so, use it.
  4. If none of them is found, JVM's default will be used.
    You can enforce the time zone with JVM option: -Duser.timezone="Asia/Taipei"

With this sequence in mind, you could configure ZK to use the correct time zone based on the application requirements.

Application-level Time Zone

If you want to use the same time zone for all users of the same application, you can specify the time zone in the library property. For example, you could specify the following in WEB-INF/zk.xml:

<library-property>
    <name>org.zkoss.web.preferred.timeZone</name>
    <value>GMT-8</value>
</library-property>
  • Line 3: the value can be anything accepted by java.util.TimeZone.getTimeZone()

Alternatively, if you prefer to specify it in Java, you can invoke Library.setProperty(String, String). Furthermore, to avoid typos, you could use Attributes.PREFERRED_TIME_ZONE as follows.

Library.setProperty(Attributes.PREFERRED_TIME_ZONE, "PST");

Per-user Time Zone

Because ZK will check if a session attribute is for the default time zone, you could configure ZK to have per-user time zone by specifying the attribute in a session.

For example, you can do this when a user logins.

 void login(String username, String password) {
     //check password
     ...
     TimeZone preferredTimeZone = ...; //decide the time zone (from, say, database)
     session.setAttribute(Attributes.PREFERRED_TIME_ZONE, preferredTimeZone);
     ...
 }

Current Time Zone

TimeZones.getCurrent() returns the current (server) time zone determined by the sequence mentioned above.

The Request Interceptor

Like configuring a locale, you can prepare the time zone for the given session by the use of the request interceptor. Please refer to the Locale section for more information.




Last Update : 2024/02/05

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.