3.1 Simple Sub Domain Service
This topic provides the systematic instructions to perform the basic operations on the selected records.
This is one of the primary use cases in OBX. To generate the simple sub-domain service, follow the below steps:
- Navigate to same extension_home folder using cmder.
- Use the command obx service new -c.
- Once this command is fired, this will take you to next section where it will prompt other set of questions. Answer them accordingly to your setup and requirement.
- Once all the questions are answered and path of XDL is given, it will generate a folder inside the extension_home folder.
- Select the option based on your requirement for question Do you want to create UI component for this service? (Y/n).
- For building the service go into the service folder from cmder and run the command gradle clean build.
- This will build the service and we can find the war of the service getting created inside the build/libs directory.
- Use this service and deploy it in your environment.
Note:
- DB scripts for the service will be generated inside the folder: \extension_home\obxcustomerservice\src\main\resources\db
- Compile the Entity script in the entity schema created for extensions only.
- Service created as part of extension should be deployed in separate domain and should not be mixed or co-deployed with any other product specific services.
- Before compiling CONFIG_SCRIPT.sql in verify the entries manually and change it according to your setup.
- Also, verify PLATO_TABLE_SCRIPT.sql before executing it in the schema it may contain some dummy values.
Parent topic: Service Extensions