Fetch the repository succeeded.
This action will force synchronization from 领课网络(RonCoo)/roncoo-education, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
领课教育是基于领课团队多年的在线教育开发和运营经验的产品,打造一个全行业都适用的在线教育系统。
核心技术框架 | 注册中心 | 服务网关 | 负载均衡 |
---|---|---|---|
Spring Cloud | Eureka | Zuul | Feign + Ribbon |
断路器 | 持久层 | 连接池 | 缓存 |
Hystrix | Mybatis | Druid | Redis |
模板引擎 | 日志框架 | 常用工具 | 版本维护 |
Freemarker | Logback | Hutool | Spring IO Platform |
系统架构图
课程播放流程
播放鉴权流程
课程下单流程
下单回调流程
├─roncoo-education -----------------------------父项目,公共依赖
│ │
│ ├─roncoo-education-course -------------------课程模块,包括订单模块
│ │ │
│ │ ├─roncoo-education-course-common ---------共用工程
│ │ │
│ │ ├─roncoo-education-course-feign ----------接口工程,供其他工程模块使用
│ │ │
│ │ └─roncoo-education-course-service --------服务工程,其他接口服务
│ │
│ ├─roncoo-education-crontab-plan -------------定时任务,处理过期订单和统计等
│ │
│ ├─roncoo-education-gateway-api --------------网关工程
│ │
│ ├─roncoo-education-server-admin -------------监控中心
│ │
│ ├─roncoo-education-server-config ------------配置中心
│ │
│ ├─roncoo-education-server-eureka ------------注册中心
│ │
│ ├─roncoo-education-system -------------------系统基础工程
│ │ │
│ │ ├─roncoo-education-system-common ---------共用工程
│ │ │
│ │ ├─roncoo-education-system-feign ----------接口工程,供其他工程模块使用
│ │ │
│ │ └─roncoo-education-system-service --------服务工程,其他接口服务
│ │
│ ├─roncoo-education-user ---------------------用户工程
│ │ │
│ │ ├─roncoo-education-user-common -----------共用工程
│ │ │
│ │ ├─roncoo-education-user-feign ------------接口工程,供其他工程模块使用
│ │ │
│ │ └─roncoo-education-user-service ----------服务工程,其他接口服务
│ │
│ ├─roncoo-education-web-boss -----------------管理后台工程
│ │
│ ├─doc
│ │ │
│ │ ├─images --------------------------------项目演示截图
│ │ │
│ │ ├─lombok.jar ----------------------------Eclipse使用,放到Eclipse的根目录即可
│ │ │
└──└──└─*.sql----------------------------------项目SQL脚本:带有demo数据
在maven的settings.xml 文件里配置mirrors的子节点,添加如下mirror
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
Lombok是一个可以通过简单的注解形式来帮助我们简化消除一些必须有但显得很臃肿的Java代码的工具,通过使用对应的注解,可以在编译源码的时候生成对应的方法。 官方地址:https://projectlombok.org/
把lombok.jar放入Eclipse的根目录,在eclipse.ini配置文件的最后加上
-javaagent:lombok.jar
安装插件,如图所示
Sign in for post a comment
Comments ( 0 )