View on GitHub

car_website_backend

Develop a backend for Car sales company. This can be generalized to any product selling backend. Develop REST and GraphQL APIs, also focuses on how to secure, consume, document, and test those APIs and web services. The API documentation is developed using Swagger.

Eureka Server

Eureka Server is an application that holds the information about all client-service applications. Every Micro service will register into the Eureka server and Eureka server knows all the client applications running on each port and IP address.

Details

eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
logging.level.com.netflix.eureka=ON
logging.level.com.netflix.discovery=ON

Run the application

Below are the commands to build and run this project.

$ mvn clean package
$ java -jar target/eurekaServer-0.0.1-SNAPSHOT.jar

You can also import it as a Maven project on your preferred IDE and run the class EurekaServerApplication.