- Spring 5.0 Microservices(Second Edition)
- Rajesh R V
- 177字
- 2021-07-02 19:44:50
Microservices are autonomous
Microservices are self-contained, independently deployable, and autonomous services that take full responsibility of a business capability and its execution. They bundle all dependencies including the library dependencies; execution environments, such as web servers and containers; or virtual machines that abstract the physical resources.
One of the major differences between microservices and SOA is in its level of autonomy. While most of the SOA implementations provide the service-level abstraction, microservices go further and abstract the realization and the execution environment.
In traditional application developments, we build a war or a ear, then deploy it into a JEE application server, such as JBoss, Weblogic, WebSphere, and more. We may deploy multiple applications into the same JEE container. In the microservices approach, each microservice will be built as a fat jar embedding all dependencies and run as a standalone Java process:

Microservices may also get their own containers for execution, as shown in the preceding diagram. Containers are portable, independently manageable, and lightweight runtime environments. Container technologies, such as Docker, are an ideal choice for microservices deployments.
- 基于粒計算模型的圖像處理
- Learning Real-time Processing with Spark Streaming
- Python從菜鳥到高手(第2版)
- Java技術手冊(原書第7版)
- Mastering PHP Design Patterns
- 數據結構案例教程(C/C++版)
- Oracle數據庫編程經典300例
- Getting Started with hapi.js
- Hands-On ROS for Robotics Programming
- Spring Boot學習指南:構建云原生Java和Kotlin應用程序
- Implementing Splunk(Second Edition)
- Visual Basic 開發從入門到精通
- 基于Docker的Redis入門與實戰
- Twitter Bootstrap Web Development How-to
- Nginx Troubleshooting