ZK Configuration"
From Documentation
(Created page with '{{ZKDevelopersReferencePageHeader}} =Version History= {{LastUpdated}} {| border='1px' | width="100%" ! Version !! Date !! Content |- | | | |} {{ZKDeveloper…') |
|||
Line 1: | Line 1: | ||
{{ZKDevelopersReferencePageHeader}} | {{ZKDevelopersReferencePageHeader}} | ||
+ | |||
+ | To use ZK in a clustering environment, you have to use the serializable UI factory. It could be done by specifying the following statement in <tt>WEB-INF/zk.xml</tt>: | ||
+ | |||
+ | <source lang="xml"> | ||
+ | <zk> | ||
+ | <system-config> | ||
+ | <ui-factory-class>org.zkoss.zk.ui.http.SerializableUiFactory</ui-factory-class> | ||
+ | </system-config> | ||
+ | </zk> | ||
+ | </source> | ||
+ | |||
+ | Also notice that you cannot enable the use of the event thread (it is disabled by default). For more information, please refer to the [[ZK Developer's Reference/UI Patterns/Event Threads|Event Threads]] section. | ||
=Version History= | =Version History= |
Revision as of 03:32, 18 November 2010
To use ZK in a clustering environment, you have to use the serializable UI factory. It could be done by specifying the following statement in WEB-INF/zk.xml:
<zk>
<system-config>
<ui-factory-class>org.zkoss.zk.ui.http.SerializableUiFactory</ui-factory-class>
</system-config>
</zk>
Also notice that you cannot enable the use of the event thread (it is disabled by default). For more information, please refer to the Event Threads section.
Version History
Version | Date | Content |
---|---|---|