https://github.com/aliabbos-ashurov/spring-cloud-config-microservices
Spring Cloud Config within a microservices architecture to externalize the configuration management for distributed applications. Spring Cloud Config allows you to manage the configurations of microservices in a centralized manner, which is essential in dynamic, cloud-based, or distributed systems.
https://github.com/aliabbos-ashurov/spring-cloud-config-microservices
eureka eureka-discovery-service microservices spring-cloud spring-config
Last synced: 6 months ago
JSON representation
Spring Cloud Config within a microservices architecture to externalize the configuration management for distributed applications. Spring Cloud Config allows you to manage the configurations of microservices in a centralized manner, which is essential in dynamic, cloud-based, or distributed systems.
- Host: GitHub
- URL: https://github.com/aliabbos-ashurov/spring-cloud-config-microservices
- Owner: Aliabbos-Ashurov
- Created: 2025-01-23T07:49:51.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-03-10T05:44:52.000Z (7 months ago)
- Last Synced: 2025-03-10T06:29:36.849Z (7 months ago)
- Topics: eureka, eureka-discovery-service, microservices, spring-cloud, spring-config
- Language: Java
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Microservices Architecture for User and Notification Management
This repository contains a microservices-based project that demonstrates the implementation of a **Cloud-Config** **User
Service** and a
**Notification Service** using **Spring Boot**, **Eureka Discovery Server**, and **MongoDB/PostgreSQL**. The system
leverages **Feign Clients** for inter-service communication and integrates with **Eureka Server** for service
registration and discovery.## Features
### 1. Cloud Config
- cloud configurations for all services in one service by spring-cloud
### 2. Eureka Discovery Server
- Centralized service registry for dynamic service discovery.
- Enables load balancing and fault tolerance.### 3. User Service
- Handles user management operations.
- Supports user creation, retrieval, and persistence in a **PostgreSQL** database.
- Communicates with the Notification Service to send user-specific notifications.### 4. Notification Service
- Manages notifications for users.
- Stores notification data in a **MongoDB** collection.
- Provides APIs for saving and retrieving notifications.### 5. Inter-Service Communication
- Uses **Spring Cloud OpenFeign** for declarative REST client communication.
- Supports service discovery and load balancing through Eureka.### 6. Database Configuration
- User Service: **PostgreSQL** with Hibernate for ORM.
- Notification Service: **MongoDB** with Spring Data MongoDB for NoSQL database operations.## Technologies Used
- **Spring Boot** for microservices.
- **Spring Cloud** for service discovery and Feign integration.
- **MongoDB** and **PostgreSQL** as databases.
- **Docker** for containerization.