- Mastering Microservices with Java
- Sourabh Sharma
- 296字
- 2021-07-02 13:03:28
Alignment with agile practices
There is no question that monolithic applications can be developed using agile practices, and these are being developed all the time. Continuous integration (CI) and continuous deployment (CD) could be used, but the question is—do they use agile practices effectively? Let's examine the following points:
- When there is a high probability of having stories dependent on each other, and there could be various scenarios, a story would not be taken up until the dependent story is complete.
- The build takes more time as the code size increases.
- The frequent deployment of a large monolithic application is a difficult task to achieve.
- You would have to redeploy the whole application even if you updated a single component.
- Redeployment may cause problems to already running components; for example, a job scheduler may change whether components impact it or not.
- The risk of redeployment may increase if a single changed component does not work properly or if it needs more fixes.
- UI developers always need more redeployment, which is quite risky and time-consuming for large monolithic applications.
The preceding issues can be tackled very easily by microservices. For example, UI developers may have their own UI component that can be developed, built, tested, and deployed separately. Similarly, other microservices might also be deployable independently and, because of their autonomous characteristics, the risk of system failure is reduced. Another advantage for development purposes is that UI developers can make use of JSON objects and mock Ajax calls to develop the UI, which can be taken up in an isolated manner. After development is finished, developers can consume the actual APIs and test the functionality. To summarize, you could say that microservices development is swift and it aligns well with the incremental needs of businesses.
- Visual C++串口通信開發(fā)入門與編程實踐
- JMeter 性能測試實戰(zhàn)(第2版)
- Java程序設(shè)計:原理與范例
- Reactive Android Programming
- PHP編程基礎(chǔ)與實例教程
- Building Microservices with .NET Core
- ScratchJr趣味編程動手玩:讓孩子用編程講故事
- ExtJS Web應(yīng)用程序開發(fā)指南第2版
- JBoss:Developer's Guide
- Oracle數(shù)據(jù)庫編程經(jīng)典300例
- 從0到1:HTML5 Canvas動畫開發(fā)
- 從零開始學(xué)Android開發(fā)
- 大數(shù)據(jù)時代的企業(yè)升級之道(全3冊)
- Learning ROS for Robotics Programming
- Unreal Engine Game Development Cookbook