ZK Resource Engine"

From Documentation
Line 6: Line 6:
 
{{versionSince| 9.5.0}}
 
{{versionSince| 9.5.0}}
  
ZK Resource Engine, it is a servlet that handles static resources (wpd, wcs).
+
ZK Resource Engine, it is a servlet that handles static resources. After you configure this servlet, ZK will retrieve its own static resources (including wpd, wcs, dsp, and images) with the specified URL pattern. Without this servlet, ZK retrieves by requesting <tt>/zkau</tt>.
  
 
Mapping URL to ZK Resource Engine is straightforward:
 
Mapping URL to ZK Resource Engine is straightforward:

Revision as of 06:26, 26 October 2020


ZK Resource Engine


DHtmlResourceServlet

[Optional] Class: DHtmlResourceServlet

Since 9.5.0

ZK Resource Engine, it is a servlet that handles static resources. After you configure this servlet, ZK will retrieve its own static resources (including wpd, wcs, dsp, and images) with the specified URL pattern. Without this servlet, ZK retrieves by requesting /zkau.

Mapping URL to ZK Resource Engine is straightforward:

	<servlet>
		<servlet-name>resourceEngine</servlet-name>
		<servlet-class>org.zkoss.zk.au.http.DHtmlResourceServlet</servlet-class>
	</servlet>
	<servlet-mapping>
		<servlet-name>resourceEngine</servlet-name>
		<url-pattern>/zkres/*</url-pattern>
	</servlet-mapping>

Notice that the URL pattern mapped to this engine must be consistent with the resource-uri parameter of ZK Loader.

Version History

Version Date Content
9.5.0 09/29/20



Last Update : 2020/10/26

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