org.zkoss.zk.ui.jsonServiceParamConverter.class"

From Documentation
m (change default to GsonConverter)
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
 
{{GlobalLibraryProperty}}
 
{{GlobalLibraryProperty}}
  
  Default: <i>org.zkoss.zkmax.ui.JacksonConverter</i> (it implies <javadoc>org.zkoss.zkmax.ui.JacksonConverter</javadoc>)
+
{{versionSince| 8.0.0}} {{ZK EE}}
  [since 8.0.0] [EE version only]
+
  Default: [http://www.zkoss.org/javadoc/latest/zk/org/zkoss/zkmax/ui/JacksonConverter.html org.zkoss.zkmax.ui.JacksonConverter]
 +
 
 +
 
 +
{{versionSince| 8.5.1}} {{ZK EE}}
 +
  Default: [http://www.zkoss.org/javadoc/latest/zk/org/zkoss/zkmax/ui/GsonConverter.html org.zkoss.zkmax.ui.GsonConverter]
  
Default: <i>org.zkoss.zkmax.ui.GsonConverter</i> (it implies <javadoc>org.zkoss.zkmax.ui.GsonConverter</javadoc>)
 
[since 8.5.1] [EE version only]
 
  
 
It specifies the name of the class used to provide the default JSON converter for service command. The class must implement the <javadoc type="interface">org.zkoss.util.Converter</javadoc> interface.
 
It specifies the name of the class used to provide the default JSON converter for service command. The class must implement the <javadoc type="interface">org.zkoss.util.Converter</javadoc> interface.
Line 16: Line 18:
 
In EE version, you can switch the implementation of the json converter in zk.xml
 
In EE version, you can switch the implementation of the json converter in zk.xml
  
<pre>
+
<syntaxhighlight lang='xml>
 
<library-property>
 
<library-property>
 
<name>org.zkoss.zk.ui.jsonServiceParamConverter.class</name>
 
<name>org.zkoss.zk.ui.jsonServiceParamConverter.class</name>
 
<value>org.zkoss.zkmax.ui.GsonConverter</value>
 
<value>org.zkoss.zkmax.ui.GsonConverter</value>
 
</library-property>
 
</library-property>
</pre>
+
</syntaxhighlight>
{{ZKConfigurationReferencePageFooter}}
+
 
 +
 
 +
{{ZKConfigurationReferencePageFooter}}

Latest revision as of 09:34, 14 March 2022


DocumentationZK Configuration Referencezk.xmlThe Library Propertiesorg.zkoss.zk.ui.jsonServiceParamConverter.class
org.zkoss.zk.ui.jsonServiceParamConverter.class


Property:

org.zkoss.zk.ui.jsonServiceParamConverter.class
Applicable:
Dndsmalltalk-check-icon.png globally in zk.xml via <library-property>
Dndsmalltalk-cross-icon.png not as <custom-attribute>

Since 8.0.0

  • Available for ZK:
  • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion ee.png
Default: org.zkoss.zkmax.ui.JacksonConverter 


Since 8.5.1

  • Available for ZK:
  • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion ee.png
Default: org.zkoss.zkmax.ui.GsonConverter


It specifies the name of the class used to provide the default JSON converter for service command. The class must implement the Converter interface.

You can implement your own JSON converter for non-EE version or use the built-in converter in EE version. In EE version, you can switch the implementation of the json converter in zk.xml

<library-property>
	<name>org.zkoss.zk.ui.jsonServiceParamConverter.class</name>
	<value>org.zkoss.zkmax.ui.GsonConverter</value>
</library-property>



Last Update : 2022/03/14

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