这是一套简单易用、支持DDD与微服务的技术框架,它一方面演示了整个微服务的技术架构,同时为微服务下如何打造支持快速交付的技术中台提出了全新的思想。 该示例包含如下项目:
demo-parent 本示例所有项目的父项目,它集成了springboot, springcloud,并定义各项目如何maven打包
demo-service-eureka 微服务注册中心eureka
demo-service-config 微服务配置中心config
demo-service-turbine 各微服务断路器运行状况监控turbine
demo-service-zuul 服务网关zuul
demo-service-parent 各业务微服务(无数据库访问)的父项目
demo-service-support 各业务微服务(无数据库访问)底层技术框架
demo-service-customer 用户管理微服务(无数据库访问)
demo-service-product 产品管理微服务(无数据库访问)
demo-service-supplier 供应商管理微服务(无数据库访问)
demo-service2-parent 各业务微服务(有数据库访问)的父项目
demo-service2-support 各业务微服务(有数据库访问)底层技术框架
demo-service2-customer 用户管理微服务(有数据库访问)
demo-service2-product 产品管理微服务(有数据库访问)
demo-service2-supplier 供应商管理微服务(有数据库访问)
demo-service2-order 订单管理微服务(有数据库访问)
更多详细信息详见demo-service2-support项目
本示例可以从客户端访问的服务:
service-customer:
curl -X POST http://localhost:9002/query/customerQry
curl http://localhost:9002/orm/customer/load?id=10002
curl -X POST http://localhost:9002/orm/customer/save -d "id=40005&name=John&sex=male&birthday=2013-07-08&identification=110212201307083814&phoneNumber=13477496662"
curl http://localhost:9002/orm/customer/delete?id=40005