org.zkoss.bind.jsonBindingParamConverter.class"

From Documentation
(Created page with " {{ZKConfigurationReferencePageHeader}} '''Property:''' org.zkoss.bind.jsonBindingParamConverter.class Default: <i>org.zkoss.zkmax.bind.JacksonConverter</i> (it implies <javad...")
 
 
(3 intermediate revisions by 3 users not shown)
Line 3: Line 3:
 
  org.zkoss.bind.jsonBindingParamConverter.class
 
  org.zkoss.bind.jsonBindingParamConverter.class
  
Default: <i>org.zkoss.zkmax.bind.JacksonConverter</i> (it implies <javadoc>org.zkoss.zkmax.bind.JacksonConverter</javadoc>)
+
{{GlobalLibraryProperty}}
[since 8.0.0] [EE version only]
 
  
It specifies the name of the class used to provide the default JSON converter . The class must implement the <javadoc type="interface">org.zkoss.bind.Converter</javadoc> interface.
+
{{versionSince| 8.0.0}} {{ZK EE}}
 +
Default: org.zkoss.zkmax.bind.JacksonConverter ( JavaDoc: <javadoc>org.zkoss.zkmax.bind.JacksonConverter</javadoc>)
 +
 
 +
{{versionSince|8.5.1}} {{ZK EE}}
 +
Default: org.zkoss.zkmax.bind.GsonConverter (JavaDoc: <javadoc>org.zkoss.zkmax.bind.GsonConverter</javadoc>)
 +
 
 +
 
 +
It specifies the name of the class used to provide the default JSON converter for ZK Bind command. The class must implement the <javadoc type="interface">org.zkoss.bind.Converter</javadoc> interface.
  
 
You can implement your own JSON converter for non-EE version or use the built-in converter in EE version.
 
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
 
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.bind.jsonBindingParamConverter.class</name>
 
<name>org.zkoss.bind.jsonBindingParamConverter.class</name>
 
<value>org.zkoss.zkmax.bind.GsonConverter</value>
 
<value>org.zkoss.zkmax.bind.GsonConverter</value>
 
</library-property>
 
</library-property>
</pre>
+
</syntaxhighlight>
{{ZKConfigurationReferencePageFooter}}
+
 
 +
{{ZKConfigurationReferencePageFooter}}

Latest revision as of 09:29, 14 March 2022


DocumentationZK Configuration Referencezk.xmlThe Library Propertiesorg.zkoss.bind.jsonBindingParamConverter.class
org.zkoss.bind.jsonBindingParamConverter.class


Property:

org.zkoss.bind.jsonBindingParamConverter.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.bind.JacksonConverter ( JavaDoc: 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.bind.GsonConverter (JavaDoc: GsonConverter)


It specifies the name of the class used to provide the default JSON converter for ZK Bind 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.bind.jsonBindingParamConverter.class</name>
	<value>org.zkoss.zkmax.bind.GsonConverter</value>
</library-property>



Last Update : 2022/03/14

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