总概
A、技术栈
- 开发语言:Java 1.8
- 数据库:MySQL、Redis、MongoDB、Elasticsearch
- 微服务框架:Spring Cloud Alibaba
- 微服务网关:Spring Cloud Gateway
- 服务注册和配置中心:Nacos
- 分布式事务:Seata
- 链路追踪框架:Sleuth
- 服务降级与熔断:Sentinel
- ORM框架:MyBatis-Plus
- 分布式任务调度平台:XXL-JOB
- 消息中间件:RocketMQ
- 分布式锁:Redisson
- 权限:OAuth2
- DevOps:Jenkins、Docker、K8S
B、本节实现目标
- 用Redisson分布式锁控制并发
一、实现用户积分功能
1.1 功能说明
用户下单后,自动给用户增加对应订单金额的积分数(取整)。文章来源:https://www.toymoban.com/news/detail-466222.html
1.2 用户积分表
增加两张表,用户总积分表:t_member_integral
、积分明细表:t_member_integral_log
文章来源地址https://www.toymoban.com/news/detail-466222.html
CREATE TABLE `t_member_integral` (
`id` bigint NOT NULL COMMENT 'id',
`member_id` bigint NOT NULL COMMENT '用户ID',
`total_integral` bigint D
到了这里,关于微服务开发系列 第六篇:Redisson的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!