March 2018
Beginner to intermediate
458 pages
10h 34m
English
When we create any server-side enterprise app, it must support a variety of different clients, including desktop and mobile browsers, mobile apps, and so on. We may also expose APIs, so that third parties can consume them and integrate with our system. Like third parties, we may also need to integrate our application with other applications through APIs. The app would handle the requests by executing business logic, then performing read-write operations by accessing a database and/or other data providers and systems, and return an HTML/JSON/XML response. What I have described here is a typical enterprise application. We have different logical modules in the application to fulfill the business requirements. These modules ...