{"id":18153225,"url":"https://github.com/quickheaven/microservices-with-spring-cloud","last_synced_at":"2025-06-14T01:35:34.677Z","repository":{"id":258029148,"uuid":"872455247","full_name":"quickheaven/microservices-with-spring-cloud","owner":"quickheaven","description":"A deep-dive into the Microservice architectural style, and how to implement it with Spring technologies. (September 2024)","archived":false,"fork":false,"pushed_at":"2024-12-24T23:49:12.000Z","size":30,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-07T00:52:24.422Z","etag":null,"topics":["java","spring","spring-boot","spring-cloud","spring-cloud-bus","spring-cloud-circuit-breaker","spring-cloud-feign","spring-cloud-gateway","spring-data","spring-data-jpa","spring-data-rest","spring-eureka","spring-eureka-client","spring-eureka-server"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/quickheaven.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-14T13:18:34.000Z","updated_at":"2024-12-24T23:49:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"2f904478-3d3d-4022-abb1-af69b3822f74","html_url":"https://github.com/quickheaven/microservices-with-spring-cloud","commit_stats":null,"previous_names":["quickheaven/microservices-with-spring-cloud"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/quickheaven/microservices-with-spring-cloud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quickheaven%2Fmicroservices-with-spring-cloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quickheaven%2Fmicroservices-with-spring-cloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quickheaven%2Fmicroservices-with-spring-cloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quickheaven%2Fmicroservices-with-spring-cloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quickheaven","download_url":"https://codeload.github.com/quickheaven/microservices-with-spring-cloud/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quickheaven%2Fmicroservices-with-spring-cloud/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259745500,"owners_count":22905109,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","spring","spring-boot","spring-cloud","spring-cloud-bus","spring-cloud-circuit-breaker","spring-cloud-feign","spring-cloud-gateway","spring-data","spring-data-jpa","spring-data-rest","spring-eureka","spring-eureka-client","spring-eureka-server"],"created_at":"2024-11-02T03:06:04.564Z","updated_at":"2025-06-14T01:35:34.632Z","avatar_url":"https://github.com/quickheaven.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Microservices with Spring Cloud\nA deep-dive into the Microservice architectural style, and how to implement it with Spring technologies. \\\n_(Updated version of https://github.com/quickheaven/Microservices-With-Spring)_\n\n## What are Microservices\n**Best describe as:**\n* An architectural style\n* An alternative to more traditional 'monolithic' applications\n* Decomposition of single system into a suite of small services, each running as independent processes and intercommunicating via open protocols.\n* Fine Grained SOA - Adrian Cockroft (Netflix)\n\n## Spring Boot\nSpring boot is all about getting a Java Spring application up and running very quickly.\n\n**Running Spring Boot:**\n* Spring Application\n  - Created Spring Application Context\n* Created Spring Application Context @SpringBootApplication\n  - Combination of @Configuration (Java equivalent of \u003cbeans\u003e file\n  - ... And @ComponentScan (Looks for @Components)\n  - ... And @EnableAutoConfiguration (Examines ApplicationContext \u0026 classpath; Creates missing beans based on intelligent defaults)\n\n## Spring Cloud\nThe goal is to address the needs of cloud based applications. \nSpring Cloud is a sub-project within Spring IO Umbrella. And is itself an umbrella project.\nSpring Cloud addresses common patterns in distributed computing.\nSpring Cloud is based on Spring Boot.\n\n### Spring and NETFLIX since 2017\nEureka -\u003e Eureka \\\nArchaius -\u003e Spring Cloud Config \\\nRibbon -\u003e Spring Cloud Load Balancer \\\nZuul -\u003e Spring Cloud Gateway \\\nHystrix -\u003e Resilience4J / Spring Cloud Circuit Breaker \\\nHystrix Dashboard -\u003e Micrometer \\\nTurbine -\u003e Micrometer\n\n### DevTools\nOptional dependency.\nAutomatically restarts applications aftermost code changes.\n```\n\u003cdependency\u003e\n\t\u003cgroupId\u003eorg.springframework.boot\u003c/groupId\u003e\n\t\u003cartifactId\u003espring-boot-devtools\u003c/artifactId\u003e\n\t\u003coptional\u003etrue\u003c/optional\u003e\n\u003c/dependency\u003e\n```\n### Spring Cloud Configuration\n(Centralized Version Configuration)\nProvides centralized, externalized, secured, easy-to-reach source of application configuration.\n\n### Spring Cloud Bus\nProvides simple way to notify clients to config changes\n\n### Spring Cloud Netflix Eureka\nService Discovery - Allows applications to register themselves as clients\n\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquickheaven%2Fmicroservices-with-spring-cloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquickheaven%2Fmicroservices-with-spring-cloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquickheaven%2Fmicroservices-with-spring-cloud/lists"}