- Notifications
You must be signed in to change notification settings - Fork139
本项目是 SCA(Spring Cloud Alibaba) 官方的最佳实践项目,致力于帮助用户更加快速、正确的使用SCA。
License
alibaba/sca-best-practice
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
本项目是 SCA(Spring Cloud Alibaba) 的最佳实践项目,里面主要包含了两部分,codeless-framework和sca-best-practice。
codeless-framework是一个基于spring boot之上封装的Web开发框架,内置了标准的增删改查、分页查询等功能,支持只写一个Entity,即可完成一个资源的开发。同时,codeless-framework也封装了国际化、异常处理、返回值等常见的web开发功能。
sca-best-practice是SCA(Spring Cloud Alibaba)的一个Demo示例,里面包含了SCA中各组件的基本用法。
- 首先请下载以下微服务组件服务端,请将以下文件都下载到同一个目录当中,以下简称为工作目录,例如/home/user/temp。
http://sca-best-practice.oss-cn-hangzhou.aliyuncs.com/nacos-server-0.7.0.zip
http://sca-best-practice.oss-cn-hangzhou.aliyuncs.com/sentinel-dashboard-1.4.0.jar
http://sca-best-practice.oss-cn-hangzhou.aliyuncs.com/rocketmq-all-4.3.2-bin-release.zip
http://sca-best-practice.oss-cn-hangzhou.aliyuncs.com/redis-5.0.3.tar.gz
- 将本项目clone到本地,然后在项目根目录执行以下命令,即可启动整个项目,其中包括微服务组件服务端和示例应用。
# mac/unix 系统sh startup.sh /home/user/temp(你的工作目录)# windows 系统暂时不支持,开发中,欢迎共建- 可以使用以下命令,验证项目是否成功启动。
创建一个用户curl -H "Content-Type: application/json" -X POST --data '{"userName":"chenzhutest1","password":"chenzhutest1","phone":"18866668888"}' http://127.0.0.1:10001/user/add{"code":"YA-200","message":"成功","data":{"userId":1,"userName":"chenzhutest1","password":"chenzhutest1","phone":"18866668888"}}查询一个用户(userId参数值请根据创建的结果调整)curl http://127.0.0.1:10001/user/get?userId=1{"code":"YA-200","message":"成功","data":{"userId":1,"userName":"chenzhutest1","password":"chenzhutest1","phone":"18866668888"}}更新用户信息(userId参数值请根据创建的结果调整)curl -H "Content-Type: application/json" -X PUT --data '{"userId":1,"userName":"chenzhutest2","password":"chenzhutest2","phone":"18888888888"}' http://127.0.0.1:10001/user/modify{"code":"YA-200","message":"成功","data":{"userId":1,"userName":"chenzhutest2","password":"chenzhutest2","phone":"18888888888"}}删除一个用户(userId参数值请根据创建的结果调整)curl -X DELETE http://127.0.0.1:10001/user/delete?userId=1{"code":"YA-200","message":"成功"}创建一个用户curl -H "Content-Type: application/json" -X POST --data '{"userName":"chenzhutest1","password":"chenzhutest1","phone":"18866668888"}' http://127.0.0.1:10001/user/add{"code":"YA-200","message":"成功","data":{"userId":2,"userName":"chenzhutest1","password":"chenzhutest1","phone":"18866668888"}}查询所有用户curl http://127.0.0.1:10001/user/list{"code":"YA-200","message":"成功","data":[{"userId":2,"userName":"chenzhutest1","password":"chenzhutest1","phone":"18866668888"}]}根据ID集合查询用户(userId参数值请根据创建的结果调整)curl http://127.0.0.1:10001/user/listById?userId=2{"code":"YA-200","message":"成功","data":[{"userId":2,"userName":"chenzhutest1","password":"chenzhutest1","phone":"18866668888"}]}分页查询用户curl "http://127.0.0.1:10001/user/listByPage?page=1&size=10"{"code":"YA-200","message":"成功","data":{"page":0,"size":10,"totalNumber":1,"totalPage":1,"result":[{"userId":2,"userName":"chenzhutest1","password":"chenzhutest1","phone":"18866668888"}]}}通过gateway访问分布式配置服务curl http://127.0.0.1:9999/user-center/example/testConfig{"code":"YA-200","message":"成功","data":"Hello, chenzhu"}通过gateway发送一条消息curl http://127.0.0.1:9999/user-center/example/testMq{"code":"YA-200","message":"成功","data":"true"}通过gateway访问redis服务curl http://127.0.0.1:9999/user-center/example/testRedis{"code":"YA-200","message":"成功","data":"Hello, chenzhu!"}通过gateway使用feign客户端进行服务调用curl http://127.0.0.1:9999/order/example/testService{"code":"YA-200","message":"成功","data":"{\"code\":\"YA-200\",\"message\":\"成功\",\"data\":[{\"userId\":2,\"userName\":\"chenzhutest1\",\"password\":\"chenzhutest1\",\"phone\":\"18866668888\"}]}"}通过浏览器打开以下地址,可以看到sentinel和nacos的控制台http://127.0.0.1:8848/nacoshttp://127.0.0.1:12000- 在项目根目录执行以下命令,即可停止整个项目,其中包括微服务组件服务端和示例应用。
# mac/unix 系统sh shutdown.sh /home/user/temp(你的工作目录)# windows 系统暂时不支持,开发中,欢迎共建About
本项目是 SCA(Spring Cloud Alibaba) 官方的最佳实践项目,致力于帮助用户更加快速、正确的使用SCA。
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors2
Uh oh!
There was an error while loading.Please reload this page.