Access Java Bean"

From Documentation
(Created page with '{{ZKDevelopersGuidePageHeader}} In the following example <source lang="xml" > <element attr1=${bean.property}/> </source> <tt>${bean.property}</tt> will be autowired to <tt>be…')
 
m (correct highlight (via JWB))
 
Line 7: Line 7:
 
</source>
 
</source>
  
<tt>${bean.property}</tt> will be autowired to <tt>bean.getProperty()</tt>.
+
<code>${bean.property}</code> will be autowired to <code>bean.getProperty()</code>.
  
 
As you can see, developer can access Java Beans with EL intuitively.
 
As you can see, developer can access Java Beans with EL intuitively.

Latest revision as of 10:36, 19 January 2022

Stop.png This documentation is for an older version of ZK. For the latest one, please click here.


In the following example

<element attr1=${bean.property}/>

${bean.property} will be autowired to bean.getProperty().

As you can see, developer can access Java Beans with EL intuitively. A full example



Last Update : 2022/01/19

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