10.1 Base product packaging
Before we look at how to package service extensions we need to understand the packaging of the base product.
Below we showcase project structure of an OBAPI base module. We take approvals as an example.
- Main-module-project.
- Sub-project containing all the schedulers required by the module.
- Sub-project containing all the services comprising the module. (Majority extensions fall under this subproject).
- Sub-project containing all the Data Transfer Objects used in other sub-projects
- Sub-project containing validators used to validate Data Transfer Objects facilitating input to OBAPI.
- Sub-project containing classes used to make cross module calls.
- Sub-project exposing endpoints to UI for end user to interact with OBAPI.
- Subproject exposing endpoints used by other module’s services to consume the services of this module via REST.
- Sub-project containing JMS listeners required for the functioning of this module.
Each of the above listed subprojects are gradle projects which are then built into their respective jars. In case of the example shown above the jars artifacts resulting from the build are as given below.
- com.ofss.digx.app.<<moduleName>>.scheduler.jar eg. com.ofss.digx.app.approval.scheduler.jar
- com.ofss.digx.app.<<moduleName>>.service.jar eg. com.ofss.digx.app.approval.service.jar
- com.ofss.digx.app.<<moduleName>>.xface.jar eg. com.ofss.digx.app.approval.xface.jar
- com.ofss.digx.app.<<moduleName>>.xface.validators.jar eg. com.ofss.digx.app.approval.xface.validators.jar
- com.ofss.digx.app.<<moduleName>>.adapter.jar eg. com.ofss.digx.app.approval.adapter.jar
- com.ofss.digx.appx.<<moduleName>>.endpoint.jar eg. com.ofss.digx.appx.approval.endpoint.jar
- com.ofss.digx.ixface.<<moduleName>>.endpoint.jar eg. com.ofss.digx.ixface.approval.endpoint.jar
- com.ofss.digx.jms.<<moduleName>>.listener.jar eg. com.ofss.digx.jms.approval.listener.jar
Parent topic: Package and Deploy Customisations