A scalable SMS processing platform built with Spring Boot, Kafka, and PostgreSQL, handling authentication, message queues, and telecom integration.
This project consists of two microservices that work together to process and send SMS messages:
- SMS Processing Platform – Handles SMS requests, authentication, Kafka processing, and status updates.
- Telecom Operator Service – Integrates with external telecom APIs, manages retries, and ensures SMS delivery.
Both services are structured under a single repository for easy cloning and management.
sms-gateway-platform/
│── sms-processing-platform/
│ ├── src/
│ ├── pom.xml
│ ├── Dockerfile
│
│── telecom-operator-service/
│ ├── src/
│ ├── pom.xml
│ ├── Dockerfile
│
│── docker-compose.yml
│── README.md
│── .gitignore
- Java 17
- Spring Boot 3.3
- Kafka
- PostgreSQL
- Docker & Docker Compose
To clone both services together, run:
git clone https://github.com/HNLad/sms-gateway-platform.git
Ensure you have Java 17, Maven, Kafka and Docker installed.
To start both services:
docker-compose up --build
This will spin up Kafka, PostgreSQL, and both services.
Run Kafka and PostgreSQL before starting services.
cd sms-processing-platform
mvn clean install
java -jar target/sms-processing-platform.jar
cd telecom-operator-service
mvn clean install
java -jar target/telecom-operator-service.jar
- Receive SMS Request
POST /telco/sendmsg Params: username, password, mobile, message
- Kafka Consumer Processing
Internal processing via Kafka
- Send SMS to Telecom Operator
GET /telco/smsc?account_id={0}&mobile={1}&message={2}
- Fork the repository.
- Create a new feature branch.
- Commit and push changes.
- Open a Pull Request.