Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sivaprasadreddy/geeknight-cloud-native-apps-springcloud
Code for Cloud Native Applications using Spring Boot, Spring Cloud talk
https://github.com/sivaprasadreddy/geeknight-cloud-native-apps-springcloud
microservices spring-boot spring-cloud
Last synced: 30 days ago
JSON representation
Code for Cloud Native Applications using Spring Boot, Spring Cloud talk
- Host: GitHub
- URL: https://github.com/sivaprasadreddy/geeknight-cloud-native-apps-springcloud
- Owner: sivaprasadreddy
- License: apache-2.0
- Created: 2017-10-10T08:38:07.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-01-05T07:15:00.000Z (10 months ago)
- Last Synced: 2024-04-14T11:30:00.887Z (7 months ago)
- Topics: microservices, spring-boot, spring-cloud
- Language: Shell
- Homepage:
- Size: 137 KB
- Stars: 3
- Watchers: 2
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Geek Night : Building Cloud Native Applications Using Spring Boot and Spring Cloud
## Config Server
`> java -jar config-server/target/config-server-0.0.1-SNAPSHOT.jar`
`> java -jar -Dserver.port=9595 config-server/target/config-server-0.0.1-SNAPSHOT.jar`
http://localhost:8888
http://localhost:8888/catalog-service/default.json
http://localhost:8888/catalog-service/prod.json
## Service Registry
`> java -jar service-registry/target/service-registry-0.0.1-SNAPSHOT.jar`
http://localhost:8761
## CatalogService
`> java -jar catalog-service/target/catalog-service-0.0.1-SNAPSHOT.jar`
http://localhost:9191/products
## InventoryService
`> java -jar inventory-service/target/inventory-service-0.0.1-SNAPSHOT.jar`
http://localhost:9393/inventory
## OrderService
`> java -jar order-service/target/order-service-0.0.1-SNAPSHOT.jar`
POST - http://localhost:9292/orders
Payload:
`{
"customerEmail":"[email protected]",
"customerAddress": "Hyderabad",
"items": [
{
"productId" : 1,
"quantity" : 3,
"productPrice": 25
},
{
"productId" : 2,
"quantity" : 1,
"productPrice": 15
}
]
}`GET - http://localhost:9292/orders/{orderId}
## ShoppingCart-UI
`> java -jar shoppingcart-ui/target/shoppingcart-ui-0.0.1-SNAPSHOT.jar`
http://localhost:8080
## Hystrix Dashboard
`> java -jar hystrix-dashboard/target/hystrix-dashboard-0.0.1-SNAPSHOT.jar`
http://localhost:9999/hystrix/
stream=http://localhost:9999/turbine.stream