Skip to content

Latest commit

 

History

History
52 lines (49 loc) · 2.55 KB

README.md

File metadata and controls

52 lines (49 loc) · 2.55 KB

spring-cloud-tritoneat

Introduction

A backend project design for online ordering platform.Customer are able to search and take order in specific restaurant. The backend side will handle order information and order process forward to the restaurant by message queue. Restaurant is able to grab success order information by websocket in the frontend web.

Project Architecture

Get Started

Running Infrastructure

  • Install Docker
    sudo apt-get install docker.io
    
  • Start MongoDB and RabbitMQ by running docker-compose.yml under project root
    docker-compose up
    

Build project

  • Build each microservices under project root
    mvn clean install
    

Running project

  • Running following commond in different terminal for each eureka and hystrix-dashboard
    java -jar ./platform/eureka/target/eureka-0.0.1-SNAPSHOT.jar 
    java -jar ./platform/hystrix-dashboard/target/hystrix-dashboard-0.0.1-SNAPSHOT.jar 
    
  • Running following commond in different terminal for each microservices
     java -jar ./tritoneat-user-info-service/target/tritoneat-user-info-service-1.0.0.BUILD-SNAPSHOT.jar 
     java -jar ./tritoneat-restaurant-info-service/target/tritoneat-restaurant-info-service-1.0.0.BUILD-SNAPSHOT.jar 
     java -jar ./tritoneat-order-process-service/target/tritoneat-order-process-service-1.0.0.BUILD-SNAPSHOT.jar 
     java -jar ./tritoneat-order-distribution/target/tritoneat-order-process-distrubution-1.0.0.BUILD-SNAPSHOT.jar 
     java -jar ./tritoneat-order-updater/target/tritoneat-order-updater-1.0.0.BUILD-SNAPSHOT.jar 
    
  • Test Sample Data
    • RestauarntInfo data: /tritoneat-restaurant-info-service/src/main/resources/restaurantInfo.json
      restaurantInfo.json
    • UserInfo data: /tritoneat-user-info-service/src/main/resources/userInfo.json
      userinfo.json
    • OrderInfo data: /tritoneat-order-process-service/src/main/resources/orderInfo.json
      orderinfo.json
  • Note: Before post orderinfo, please post restaurantinfo and userinfo first.

Web port GUI

Tritoneat Design Detail

Tritoneat Design Detail