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 Beginner
monkey Beginner
Yes, it's correct, you can take a look the schema here
  • 0
  • Reply