Time Zone
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.
- It checks if an attribute called
org.zkoss.web.preferred.timeZone
defined in the HTTP session (aka., Session). If so, use it. - It checks if an attribute called
org.zkoss.web.preferred.timeZone
defined in the Servlet context (aka., Application). If so, use it. - It checks if a property called
org.zkoss.web.preferred.timeZone
defined in the library property (i.e., Library). 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:
-Duser.timezone="Asia/Taipei"
- You can enforce the time zone with JVM option:
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.
Browser Time Zone
Run the js code below in your browser's developer tool's Console, you will get a time zone like America/New_York
:
Intl.DateTimeFormat().resolvedOptions().timeZone
Or you can check a browser's time zone setting.
When there is a time zone difference between the server and the browser, you need to handle the difference. See ZK_Developer's_Reference/Internationalization/Time_Zone/Handling_Server_and_User_Time_Zones
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.