https://github.com/akifzdemir/networking-platform-microservice
This project features a microservices architecture orchestrated using Docker. Service-to-service communication is handled using Feign Client.
https://github.com/akifzdemir/networking-platform-microservice
feign-client java microservice spring-boot
Last synced: 29 days ago
JSON representation
This project features a microservices architecture orchestrated using Docker. Service-to-service communication is handled using Feign Client.
- Host: GitHub
- URL: https://github.com/akifzdemir/networking-platform-microservice
- Owner: akifzdemir
- Created: 2023-11-06T21:59:00.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-25T09:27:57.000Z (almost 2 years ago)
- Last Synced: 2025-10-19T15:40:31.908Z (8 months ago)
- Topics: feign-client, java, microservice, spring-boot
- Language: Java
- Homepage:
- Size: 314 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Networking Project - Microservices Architecture
This project features a microservices architecture orchestrated using Docker. Each microservice performs different functions and uses PostgreSQL and MongoDB databases. Additionally, service-to-service communication is handled using Feign Client. The user interface interacts with the microservices through the API Gateway.
## Table of Contents
- [Overview](#overview)
- [Architecture Components](#architecture-components)
- [Setup](#setup)
- [Architecture Diagram](#architecture-diagram)
- [Usage](#usage)
## Overview
This project includes several microservices that perform different functions:
- User Service: Manages user operations.
- Job Service: Manages job listings and applications.
- Company Service: Manages company information.
- Message Service: Manages messaging operations with web socket.
- Post Service: Manages posts, comments and likes.
- AI Service: Performs artificial intelligence-related tasks.
- API Gateway: The main entry point through which all requests are routed.
- Config Server: Manages the configurations of other microservices.
- Discovery Server: Enables microservices to discover each other.
- User Interface: The frontend user interface.
## Architecture Components
### Services
- **User Service**: Uses PostgreSQL and communicates with Job Service, Company Service, and Post Service via Feign Client.
- **Job Service**: Uses PostgreSQL and communicates with User Service via Feign Client.
- **Company Service**: Uses PostgreSQL and communicates with User Service via Feign Client.
- **Message Service**: Uses MongoDB and Web socket.
- **Post Service**: Uses PostgreSQL and communicates with User Service via Feign Client.
- **AI Service**: Uses Fast API and Sklearn.
- **API Gateway**: Routes all requests to the appropriate microservice.
- **Config Server**: Manages the configurations of other microservices.
- **Discovery Server**: Enables microservices to discover each other.
- **User Interface**: The frontend user interface, interacts with microservices through the API Gateway.
### Databases
- **PostgreSQL**: Used for User Service, Job Service, Company Service, Post Service, and AI Service.
- **MongoDB**: Used for Message Service.
## Setup
Follow these steps to set up the project locally.
### Prerequisites
- Docker
- Docker Compose
### Steps
1. Clone this repository:
```sh
git clone https://github.com/akifzdemir/networking-platform-microservice.git
2. Change to the project directory:
```sh
cd microservices-architecture-project
3. Build the Docker images:
```sh
docker-compose build
4. Start the Docker containers:
```sh
docker-compose up
## Architecture Diagram
Below is the architecture diagram of the microservices:

## Usage
Once the application is running, you can access the user interface through your web browser.
The API Gateway will route all requests to the respective microservices.