├── .gitignore ├── Cloud_Native_Spring_in_Action_v10.pdf ├── README.md └── cn-translate ├── 01-Introduction-to-cloud-native ├── 1.1-What-is-cloud-native │ ├── 1.1.1-The-Three-Ps-of-Cloud-Native.md │ └── Introduction.md ├── 1.2-The-cloud-and-the-cloud-computing-model │ ├── 1.2.1-Infrastructure-as-a-Service.md │ ├── 1.2.2-Container-as-a-Service.md │ ├── 1.2.3-Platform-as-a-Service.md │ ├── 1.2.4-Function-as-a-Service.md │ ├── 1.2.5-Software-as-a-Service.md │ └── Introduction.md ├── 1.3-Properties-of-cloud-native-applications │ ├── 1.3.1-Scalability.md │ ├── 1.3.2-Loose-coupling.md │ ├── 1.3.3-Resilience.md │ ├── 1.3.4-Observability.md │ ├── 1.3.5-Manageability.md │ └── Introduction.md ├── 1.4-Culture-and-practices-supporting-cloud-native │ ├── 1.4.1-Automation.md │ ├── 1.4.2-Continuous-delivery.md │ ├── 1.4.3-DevOps.md │ └── Introduction.md ├── 1.5-Is-the-cloud-your-best-option │ ├── 1.5.1-Speed.md │ ├── 1.5.2-Resilience.md │ ├── 1.5.3-Scale.md │ ├── 1.5.4-Cost.md │ └── Introduction.md ├── 1.6-Cloud-native-topologies │ ├── 1.6.1-Containers.md │ ├── 1.6.2-Orchestration.md │ ├── 1.6.3-Serverless.md │ └── Introduction.md ├── 1.7-Architectures-for-cloud-native-applications │ ├── 1.7.1-From-multi-tiered-to-microservice-architectures-and-beyond.md │ ├── 1.7.2-Service-based-architecture-for-cloud-native-applications.md │ └── Introduction.md ├── Introduction.md └── Summary.md ├── 02-Cloud-native-patterns-and-technologies ├── 2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond │ ├── 2.1.1-One-codebase-one-application.md │ ├── 2.1.10-Administrative-processes.md │ ├── 2.1.11-Port-binding.md │ ├── 2.1.12-Stateless-processes.md │ ├── 2.1.13-Concurrency.md │ ├── 2.1.14-Telemetry.md │ ├── 2.1.15-Authentication-and-authorization.md │ ├── 2.1.2-API-first.md │ ├── 2.1.3-Dependency-management.md │ ├── 2.1.4-Design-build-release-run.md │ ├── 2.1.5-Configuration-credentials-and-code.md │ ├── 2.1.6-Logs.md │ ├── 2.1.7-Disposability.md │ ├── 2.1.8-Backing-services.md │ ├── 2.1.9-Environment-parity.md │ └── Introduction.md ├── 2.2-Building-cloud-native-applications-with-Spring │ ├── 2.2.1-Overview-of-the-Spring-landscape.md │ ├── 2.2.2-Building-a-Spring-Boot-application.md │ └── Introduction.md ├── 2.3-Containerizing-applications-with-Docker │ ├── 2.3.1-Introducing-Docker-Images-and-containers.md │ ├── 2.3.2-Running-a-Spring-application-as-a-container.md │ └── Introduction.md ├── 2.4-Managing-containers-with-Kubernetes │ ├── 2.4.1-Introducing-Kubernetes-Deployments-pods-and-services.md │ ├── 2.4.2-Running-a-Spring-application-on-Kubernetes.md │ └── Introduction.md ├── 2.5-Polar-Bookshop-A-cloud-native-application │ ├── 2.5.1-Understanding-the-requirements-of-the-system.md │ ├── 2.5.2-Exploring-patterns-and-technologies-used-in-the-project.md │ └── Introduction.md ├── Introduction.md └── Summary.md ├── 03-Getting-started-with-cloud-native-development ├── 3.1-Bootstrapping-a-cloud-native-project │ ├── 3.1.1-One-codebase-one-application.md │ ├── 3.1.2-Dependency-management-with-Gradle-and-Maven.md │ └── Introduction.md ├── 3.2-Working-with-embedded-servers │ ├── 3.2.1-Executable-JARs-and-embedded-servers-Ready-for-the-cloud.md │ ├── 3.2.2-Understanding-the-thread-per-request-model.md │ ├── 3.2.3-Configuring-the-embedded-Tomcat.md │ └── Introduction.md ├── 3.3-Building-a-RESTful-application-with-Spring-MVC │ ├── 3.3.1-REST-API-first-business-logic-later.md │ ├── 3.3.2-Implementing-a-REST-API-with-Spring-MVC.md │ ├── 3.3.3-Data-validation-and-error-handling.md │ ├── 3.3.4-Evolving-APIs-for-future-requirements.md │ └── Introduction.md ├── 3.4-Testing-a-RESTful-application-with-Spring │ ├── 3.4.1-Unit-tests-with-JUnit-5.md │ ├── 3.4.2-Integration-tests-with-SpringBootTest.md │ ├── 3.4.3-Testing-REST-controllers-with-WebMvcTest.md │ ├── 3.4.4-Testing-the-JSON-serialization-with-JsonTest.md │ └── Introduction.md ├── 3.5-Continuous-integration-pipelines-with-GitHub-Actions │ ├── 3.5.1-GitHub-Actions-Automating-builds-and-tests.md │ └── Introduction.md ├── Introduction.md └── Summary.md ├── 04-Externalized-configuration-management ├── 4.1-Configuration-in-Spring-properties-and-profiles │ ├── 4.1.1-Properties-Key-value-pairs-for-configuration.md │ ├── 4.1.2-Profiles-Feature-flags-and-configuration-groups.md │ └── Introduction.md ├── 4.2-Externalized-configuration-one-build-multiple-configurations │ ├── 4.2.1-Configuring-an-application-through-command-line-arguments.md │ ├── 4.2.2-Configuring-an-application-through-JVM-system-properties.md │ ├── 4.2.3-Configuring-an-application-through-environment-variables.md │ └── Introduction.md ├── 4.3-Centralized-configuration-management-with-Spring-Cloud-Config-Server │ ├── 4.3.1-Using-Git-to-store-your-configuration-data.md │ ├── 4.3.2-Setting-up-a-configuration-server.md │ ├── 4.3.3-Making-the-configuration-server-resilient.md │ ├── 4.3.4-Understanding-the-configuration-server-REST-API.md │ ├── 4.4.1-Setting-up-a-configuration-client.md │ ├── 4.4.2-Making-the-configuration-client-resilient.md │ ├── 4.4.3-Refreshing-configuration-at-runtime.md │ └── Introduction.md ├── 4.4-Using-a-configuration-server-with-Spring-Cloud-Config-Client │ └── Introduction.md ├── Introduction.md └── Summary.md ├── README.md ├── SUMMARY.md ├── assets ├── 00-Vitale-CNS-MEAP-HI.png ├── 1.1.jpg ├── 1.10.jpg ├── 1.11.jpg ├── 1.12.jpg ├── 1.13.jpg ├── 1.14.jpg ├── 1.2.jpg ├── 1.3.jpg ├── 1.4.jpg ├── 1.5.jpg ├── 1.6.jpg ├── 1.7.jpg ├── 1.8.jpg ├── 1.9.jpg ├── 2.1.jpg ├── 2.10.jpg ├── 2.11.jpg ├── 2.12.jpg ├── 2.13.jpg ├── 2.14.jpg ├── 2.15.jpg ├── 2.2.jpg ├── 2.3.jpg ├── 2.4.jpg ├── 2.5.jpg ├── 2.6.jpg ├── 2.7.jpg ├── 2.8.jpg ├── 2.9.jpg ├── 4.1.jpg ├── 4.2.jpg ├── 4.3.jpg └── 4.4.jpg ├── book.json └── welcome.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/.gitignore -------------------------------------------------------------------------------- /Cloud_Native_Spring_in_Action_v10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/Cloud_Native_Spring_in_Action_v10.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/README.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.1-What-is-cloud-native/1.1.1-The-Three-Ps-of-Cloud-Native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.1-What-is-cloud-native/1.1.1-The-Three-Ps-of-Cloud-Native.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.1-What-is-cloud-native/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.1-What-is-cloud-native/Introduction.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.2-The-cloud-and-the-cloud-computing-model/1.2.1-Infrastructure-as-a-Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.2-The-cloud-and-the-cloud-computing-model/1.2.1-Infrastructure-as-a-Service.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.2-The-cloud-and-the-cloud-computing-model/1.2.2-Container-as-a-Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.2-The-cloud-and-the-cloud-computing-model/1.2.2-Container-as-a-Service.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.2-The-cloud-and-the-cloud-computing-model/1.2.3-Platform-as-a-Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.2-The-cloud-and-the-cloud-computing-model/1.2.3-Platform-as-a-Service.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.2-The-cloud-and-the-cloud-computing-model/1.2.4-Function-as-a-Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.2-The-cloud-and-the-cloud-computing-model/1.2.4-Function-as-a-Service.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.2-The-cloud-and-the-cloud-computing-model/1.2.5-Software-as-a-Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.2-The-cloud-and-the-cloud-computing-model/1.2.5-Software-as-a-Service.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.2-The-cloud-and-the-cloud-computing-model/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.2-The-cloud-and-the-cloud-computing-model/Introduction.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.3-Properties-of-cloud-native-applications/1.3.1-Scalability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.3-Properties-of-cloud-native-applications/1.3.1-Scalability.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.3-Properties-of-cloud-native-applications/1.3.2-Loose-coupling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.3-Properties-of-cloud-native-applications/1.3.2-Loose-coupling.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.3-Properties-of-cloud-native-applications/1.3.3-Resilience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.3-Properties-of-cloud-native-applications/1.3.3-Resilience.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.3-Properties-of-cloud-native-applications/1.3.4-Observability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.3-Properties-of-cloud-native-applications/1.3.4-Observability.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.3-Properties-of-cloud-native-applications/1.3.5-Manageability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.3-Properties-of-cloud-native-applications/1.3.5-Manageability.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.3-Properties-of-cloud-native-applications/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.3-Properties-of-cloud-native-applications/Introduction.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.4-Culture-and-practices-supporting-cloud-native/1.4.1-Automation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.4-Culture-and-practices-supporting-cloud-native/1.4.1-Automation.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.4-Culture-and-practices-supporting-cloud-native/1.4.2-Continuous-delivery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.4-Culture-and-practices-supporting-cloud-native/1.4.2-Continuous-delivery.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.4-Culture-and-practices-supporting-cloud-native/1.4.3-DevOps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.4-Culture-and-practices-supporting-cloud-native/1.4.3-DevOps.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.4-Culture-and-practices-supporting-cloud-native/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.4-Culture-and-practices-supporting-cloud-native/Introduction.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.5-Is-the-cloud-your-best-option/1.5.1-Speed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.5-Is-the-cloud-your-best-option/1.5.1-Speed.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.5-Is-the-cloud-your-best-option/1.5.2-Resilience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.5-Is-the-cloud-your-best-option/1.5.2-Resilience.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.5-Is-the-cloud-your-best-option/1.5.3-Scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.5-Is-the-cloud-your-best-option/1.5.3-Scale.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.5-Is-the-cloud-your-best-option/1.5.4-Cost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.5-Is-the-cloud-your-best-option/1.5.4-Cost.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.5-Is-the-cloud-your-best-option/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.5-Is-the-cloud-your-best-option/Introduction.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.6-Cloud-native-topologies/1.6.1-Containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.6-Cloud-native-topologies/1.6.1-Containers.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.6-Cloud-native-topologies/1.6.2-Orchestration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.6-Cloud-native-topologies/1.6.2-Orchestration.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.6-Cloud-native-topologies/1.6.3-Serverless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.6-Cloud-native-topologies/1.6.3-Serverless.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.6-Cloud-native-topologies/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.6-Cloud-native-topologies/Introduction.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.7-Architectures-for-cloud-native-applications/1.7.1-From-multi-tiered-to-microservice-architectures-and-beyond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.7-Architectures-for-cloud-native-applications/1.7.1-From-multi-tiered-to-microservice-architectures-and-beyond.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.7-Architectures-for-cloud-native-applications/1.7.2-Service-based-architecture-for-cloud-native-applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.7-Architectures-for-cloud-native-applications/1.7.2-Service-based-architecture-for-cloud-native-applications.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/1.7-Architectures-for-cloud-native-applications/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/1.7-Architectures-for-cloud-native-applications/Introduction.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/Introduction.md -------------------------------------------------------------------------------- /cn-translate/01-Introduction-to-cloud-native/Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/01-Introduction-to-cloud-native/Summary.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.1-One-codebase-one-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.1-One-codebase-one-application.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.10-Administrative-processes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.10-Administrative-processes.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.11-Port-binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.11-Port-binding.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.12-Stateless-processes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.12-Stateless-processes.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.13-Concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.13-Concurrency.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.14-Telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.14-Telemetry.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.15-Authentication-and-authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.15-Authentication-and-authorization.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.2-API-first.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.2-API-first.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.3-Dependency-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.3-Dependency-management.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.4-Design-build-release-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.4-Design-build-release-run.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.5-Configuration-credentials-and-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.5-Configuration-credentials-and-code.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.6-Logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.6-Logs.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.7-Disposability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.7-Disposability.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.8-Backing-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.8-Backing-services.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.9-Environment-parity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/2.1.9-Environment-parity.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.1-Cloud-native-development-principles-Twelve-Factors-and-beyond/Introduction.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.2-Building-cloud-native-applications-with-Spring/2.2.1-Overview-of-the-Spring-landscape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.2-Building-cloud-native-applications-with-Spring/2.2.1-Overview-of-the-Spring-landscape.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.2-Building-cloud-native-applications-with-Spring/2.2.2-Building-a-Spring-Boot-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.2-Building-cloud-native-applications-with-Spring/2.2.2-Building-a-Spring-Boot-application.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.2-Building-cloud-native-applications-with-Spring/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.2-Building-cloud-native-applications-with-Spring/Introduction.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.3-Containerizing-applications-with-Docker/2.3.1-Introducing-Docker-Images-and-containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.3-Containerizing-applications-with-Docker/2.3.1-Introducing-Docker-Images-and-containers.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.3-Containerizing-applications-with-Docker/2.3.2-Running-a-Spring-application-as-a-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.3-Containerizing-applications-with-Docker/2.3.2-Running-a-Spring-application-as-a-container.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.3-Containerizing-applications-with-Docker/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.3-Containerizing-applications-with-Docker/Introduction.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.4-Managing-containers-with-Kubernetes/2.4.1-Introducing-Kubernetes-Deployments-pods-and-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.4-Managing-containers-with-Kubernetes/2.4.1-Introducing-Kubernetes-Deployments-pods-and-services.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.4-Managing-containers-with-Kubernetes/2.4.2-Running-a-Spring-application-on-Kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.4-Managing-containers-with-Kubernetes/2.4.2-Running-a-Spring-application-on-Kubernetes.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.4-Managing-containers-with-Kubernetes/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.4-Managing-containers-with-Kubernetes/Introduction.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.5-Polar-Bookshop-A-cloud-native-application/2.5.1-Understanding-the-requirements-of-the-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.5-Polar-Bookshop-A-cloud-native-application/2.5.1-Understanding-the-requirements-of-the-system.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.5-Polar-Bookshop-A-cloud-native-application/2.5.2-Exploring-patterns-and-technologies-used-in-the-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.5-Polar-Bookshop-A-cloud-native-application/2.5.2-Exploring-patterns-and-technologies-used-in-the-project.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/2.5-Polar-Bookshop-A-cloud-native-application/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/2.5-Polar-Bookshop-A-cloud-native-application/Introduction.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/Introduction.md -------------------------------------------------------------------------------- /cn-translate/02-Cloud-native-patterns-and-technologies/Summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/02-Cloud-native-patterns-and-technologies/Summary.md -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.1-Bootstrapping-a-cloud-native-project/3.1.1-One-codebase-one-application.md: -------------------------------------------------------------------------------- 1 | # 3.1.1 一份基准代码对应一个应用 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.1-Bootstrapping-a-cloud-native-project/3.1.2-Dependency-management-with-Gradle-and-Maven.md: -------------------------------------------------------------------------------- 1 | # 3.1.2 使用 Maven 或 Gradel 管理依赖 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.1-Bootstrapping-a-cloud-native-project/Introduction.md: -------------------------------------------------------------------------------- 1 | # 3.1 创建云原生项目 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.2-Working-with-embedded-servers/3.2.1-Executable-JARs-and-embedded-servers-Ready-for-the-cloud.md: -------------------------------------------------------------------------------- 1 | # 3.2.1 可执行 JAR 和内嵌服务:为云做好准备 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.2-Working-with-embedded-servers/3.2.2-Understanding-the-thread-per-request-model.md: -------------------------------------------------------------------------------- 1 | # 3.2.2 理解 一个请求一个线程 模式 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.2-Working-with-embedded-servers/3.2.3-Configuring-the-embedded-Tomcat.md: -------------------------------------------------------------------------------- 1 | # 3.2.3 配置内嵌 Tomcat 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.2-Working-with-embedded-servers/Introduction.md: -------------------------------------------------------------------------------- 1 | # 3.2 使用内嵌服务器 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.3-Building-a-RESTful-application-with-Spring-MVC/3.3.1-REST-API-first-business-logic-later.md: -------------------------------------------------------------------------------- 1 | # 3.3.1 REST API 第一,业务逻辑第二 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.3-Building-a-RESTful-application-with-Spring-MVC/3.3.2-Implementing-a-REST-API-with-Spring-MVC.md: -------------------------------------------------------------------------------- 1 | # 3.3.2 使用 Spring MVC 实现 REST API 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.3-Building-a-RESTful-application-with-Spring-MVC/3.3.3-Data-validation-and-error-handling.md: -------------------------------------------------------------------------------- 1 | # 3.3.3 数据校验和出错处理 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.3-Building-a-RESTful-application-with-Spring-MVC/3.3.4-Evolving-APIs-for-future-requirements.md: -------------------------------------------------------------------------------- 1 | # 3.3.4 为未来需求扩展 API 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.3-Building-a-RESTful-application-with-Spring-MVC/Introduction.md: -------------------------------------------------------------------------------- 1 | # 3.3 使用 Spring MVC 构建 RESTful 应用 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.4-Testing-a-RESTful-application-with-Spring/3.4.1-Unit-tests-with-JUnit-5.md: -------------------------------------------------------------------------------- 1 | # 3.4.1 使用 JUnit 5 进行单元测试 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.4-Testing-a-RESTful-application-with-Spring/3.4.2-Integration-tests-with-SpringBootTest.md: -------------------------------------------------------------------------------- 1 | # 3.4.2 使用 @SpringBootTest 进行集成测试 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.4-Testing-a-RESTful-application-with-Spring/3.4.3-Testing-REST-controllers-with-WebMvcTest.md: -------------------------------------------------------------------------------- 1 | # 3.4.3 使用 @WebMvcTest 测试 REST 控制器 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.4-Testing-a-RESTful-application-with-Spring/3.4.4-Testing-the-JSON-serialization-with-JsonTest.md: -------------------------------------------------------------------------------- 1 | # 3.4.4 使用 @JsonTest 测试 JSON 序列化 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.4-Testing-a-RESTful-application-with-Spring/Introduction.md: -------------------------------------------------------------------------------- 1 | # 3.4 使用 Spring 测试 RESTful 应用 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.5-Continuous-integration-pipelines-with-GitHub-Actions/3.5.1-GitHub-Actions-Automating-builds-and-tests.md: -------------------------------------------------------------------------------- 1 | # 3.5.1 使用 GitHub Action 进行自动构建和测试 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/3.5-Continuous-integration-pipelines-with-GitHub-Actions/Introduction.md: -------------------------------------------------------------------------------- 1 | # 3.5 使用 GitHub Action 进行持续集成 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/Introduction.md: -------------------------------------------------------------------------------- 1 | # 第 3 章 进行云原生应用开发 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/03-Getting-started-with-cloud-native-development/Summary.md: -------------------------------------------------------------------------------- 1 | # 3.6 总结 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.1-Configuration-in-Spring-properties-and-profiles/4.1.1-Properties-Key-value-pairs-for-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/04-Externalized-configuration-management/4.1-Configuration-in-Spring-properties-and-profiles/4.1.1-Properties-Key-value-pairs-for-configuration.md -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.1-Configuration-in-Spring-properties-and-profiles/4.1.2-Profiles-Feature-flags-and-configuration-groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/04-Externalized-configuration-management/4.1-Configuration-in-Spring-properties-and-profiles/4.1.2-Profiles-Feature-flags-and-configuration-groups.md -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.1-Configuration-in-Spring-properties-and-profiles/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/04-Externalized-configuration-management/4.1-Configuration-in-Spring-properties-and-profiles/Introduction.md -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.2-Externalized-configuration-one-build-multiple-configurations/4.2.1-Configuring-an-application-through-command-line-arguments.md: -------------------------------------------------------------------------------- 1 | # 4.2.1 命令行参数配置应用 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.2-Externalized-configuration-one-build-multiple-configurations/4.2.2-Configuring-an-application-through-JVM-system-properties.md: -------------------------------------------------------------------------------- 1 | # 4.2.2 JVM 系统属性配置应用 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.2-Externalized-configuration-one-build-multiple-configurations/4.2.3-Configuring-an-application-through-environment-variables.md: -------------------------------------------------------------------------------- 1 | # 4.2.3 环境变量配置应用 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.2-Externalized-configuration-one-build-multiple-configurations/Introduction.md: -------------------------------------------------------------------------------- 1 | # 4.2 外部化配置:一个构建多个配置 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.3-Centralized-configuration-management-with-Spring-Cloud-Config-Server/4.3.1-Using-Git-to-store-your-configuration-data.md: -------------------------------------------------------------------------------- 1 | # 4.3.1 使用 Git 存储配置数据 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.3-Centralized-configuration-management-with-Spring-Cloud-Config-Server/4.3.2-Setting-up-a-configuration-server.md: -------------------------------------------------------------------------------- 1 | # 4.3.2 设置 Config Server 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.3-Centralized-configuration-management-with-Spring-Cloud-Config-Server/4.3.3-Making-the-configuration-server-resilient.md: -------------------------------------------------------------------------------- 1 | # 4.3.3 使 Config Server 更有韧性 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.3-Centralized-configuration-management-with-Spring-Cloud-Config-Server/4.3.4-Understanding-the-configuration-server-REST-API.md: -------------------------------------------------------------------------------- 1 | # 4.3.4 理解 Config Server 的 Rest API 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.3-Centralized-configuration-management-with-Spring-Cloud-Config-Server/4.4.1-Setting-up-a-configuration-client.md: -------------------------------------------------------------------------------- 1 | # 4.4.1 设置 Config Client 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.3-Centralized-configuration-management-with-Spring-Cloud-Config-Server/4.4.2-Making-the-configuration-client-resilient.md: -------------------------------------------------------------------------------- 1 | # 4.4.2 使 Config Client 更有韧性 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.3-Centralized-configuration-management-with-Spring-Cloud-Config-Server/4.4.3-Refreshing-configuration-at-runtime.md: -------------------------------------------------------------------------------- 1 | # 4.4.3 运行时刷新配置 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.3-Centralized-configuration-management-with-Spring-Cloud-Config-Server/Introduction.md: -------------------------------------------------------------------------------- 1 | # 4.3 用 Spring Config Server 进行集中化配置管理 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/4.4-Using-a-configuration-server-with-Spring-Cloud-Config-Client/Introduction.md: -------------------------------------------------------------------------------- 1 | # 4.4 通过 Spring Cloud Config Client 使用配置服务 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/04-Externalized-configuration-management/Introduction.md -------------------------------------------------------------------------------- /cn-translate/04-Externalized-configuration-management/Summary.md: -------------------------------------------------------------------------------- 1 | # 4.4 总结 2 | 3 | -------------------------------------------------------------------------------- /cn-translate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/README.md -------------------------------------------------------------------------------- /cn-translate/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/SUMMARY.md -------------------------------------------------------------------------------- /cn-translate/assets/00-Vitale-CNS-MEAP-HI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/00-Vitale-CNS-MEAP-HI.png -------------------------------------------------------------------------------- /cn-translate/assets/1.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.1.jpg -------------------------------------------------------------------------------- /cn-translate/assets/1.10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.10.jpg -------------------------------------------------------------------------------- /cn-translate/assets/1.11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.11.jpg -------------------------------------------------------------------------------- /cn-translate/assets/1.12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.12.jpg -------------------------------------------------------------------------------- /cn-translate/assets/1.13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.13.jpg -------------------------------------------------------------------------------- /cn-translate/assets/1.14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.14.jpg -------------------------------------------------------------------------------- /cn-translate/assets/1.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.2.jpg -------------------------------------------------------------------------------- /cn-translate/assets/1.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.3.jpg -------------------------------------------------------------------------------- /cn-translate/assets/1.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.4.jpg -------------------------------------------------------------------------------- /cn-translate/assets/1.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.5.jpg -------------------------------------------------------------------------------- /cn-translate/assets/1.6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.6.jpg -------------------------------------------------------------------------------- /cn-translate/assets/1.7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.7.jpg -------------------------------------------------------------------------------- /cn-translate/assets/1.8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.8.jpg -------------------------------------------------------------------------------- /cn-translate/assets/1.9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/1.9.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.1.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.10.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.11.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.12.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.13.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.14.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.15.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.2.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.3.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.4.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.5.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.6.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.7.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.8.jpg -------------------------------------------------------------------------------- /cn-translate/assets/2.9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/2.9.jpg -------------------------------------------------------------------------------- /cn-translate/assets/4.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/4.1.jpg -------------------------------------------------------------------------------- /cn-translate/assets/4.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/4.2.jpg -------------------------------------------------------------------------------- /cn-translate/assets/4.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/4.3.jpg -------------------------------------------------------------------------------- /cn-translate/assets/4.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/assets/4.4.jpg -------------------------------------------------------------------------------- /cn-translate/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/book.json -------------------------------------------------------------------------------- /cn-translate/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonLi0102/cloud-native-spring-in-action-translate/HEAD/cn-translate/welcome.md --------------------------------------------------------------------------------