Avatar
0
azqhdyt4pggs7smw Beginner
Multiple application inside applications tag in zone settings xml
How to create multiple application within applications tag?
<applications>
        <application>
            <name>app1</name>
            <folder>app1-app-entry</folder>
            <entry-loader>com.abc.app1.app.AppEntryLoader</entry-loader>
            <config-file>config/config.properties</config-file>
        </application>
        <application>
            <name>app2</name>
            <folder>app2-app-entry</folder>
            <entry-loader>com.abc.app2.app.AppEntryLoader</entry-loader>
            <config-file>config/config.properties</config-file>
        </application>
    </applications>
is it the correct way to define?
  • Answer
Remain: 5
1 Answer
Avatar
monkey Enlightened
monkey Enlightened
Yes, it's correct, you can take a look the schema [here](https://github.com/youngmonkeys/ezyfox-server/blob/master/ezyfox-server-core/src/main/resources/ezy-zone-settings-1.0.0.xsd#L98-L115)
  • 0
  • Reply