Loading the business model

Dynamic classes can be loaded either when the application starts up, that is, when IltSystem. Init is called, or later when data is loaded in a data source. See Adding business objects from JavaBeans.

Loading at application start up

To load a model when the application is launched, you can modify the deployment descriptor by adding the following lines inside the <deployment> element:
<classManager>
   <file>mymodel.xml</file>
</classManager>
The <classManager> element can include a number of <file> tags. The path to these files is resolved by means of the URL access service, which is created and configured by the deployment descriptor.
For more information, see Class manager.

Loading with the data in a data source

You can insert business model XML elements, that is, complete <classes> elements, in a data source file. For details, refer to Adding business objects from JavaBeans.