# demo-service2-customer **Repository Path**: CSL2014/demo-service2-customer ## Basic Information - **Project Name**: demo-service2-customer - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 7 - **Created**: 2022-05-15 - **Last Updated**: 2022-05-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Demo-service-xxx系列的使用说明 这是一套简单易用、支持DDD与微服务的技术框架,它一方面演示了整个微服务的技术架构,同时为微服务下如何打造支持快速交付的技术中台提出了全新的思想。 该示例包含如下项目: ```bash 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项目 本示例可以从客户端访问的服务: ```bash 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 ```