In this part, we will continue developing our XSA application with Node.js module for business logic.
HANA XSA MTA project and HDI Module
1. Right click on the MTA project name and create Node.js module New->Node.js Module. Complete the steps in the wizard.
HANA XSA MTA project and HDI Module
1. Right click on the MTA project name and create Node.js module New->Node.js Module. Complete the steps in the wizard.
The wizard even provides an option of XSJS support. Kindly check the same as we are going to use xsodata services.
2. Once the above steps is completed, we can see the Node.js module in our project workspace with all the source files such as server.js to bootstrap xsjs, package.json created.
3. As shown below , we have both HDI module(CMData) and Node.js module(MSBusinessLogic). This both module needs to interact with each other. To achieve this, we to maintain required entries in mta.yaml file. In mta.yml file, we need to mention Node.js module requires HDI module and Node.js module provide service to be used by any other module.
4. Next we willl create xsodata service for the two entities created in CMData HDI module. Right click on MSBusinessLogic module and create an new file as service.xsodata under the lib folder.
In the xsodata, we have defined the service to expose the entities as well as the association from Customer to Orders.
Save, Build and Run the application.
5. Once the application is running, we can test the xsodata service from the application URL. Metadata of service.xsodata is displayed.
6. We will also create XSJS to interact with the HDI module.
Thus till now we have created MTA poject, HDI module and Node.js module. Also we have seen how the Node.js module consumes the HDI module artifacts.
No comments:
Post a Comment