Git Product home page Git Product logo

ihuangj / roncoo-education Goto Github PK

View Code? Open in Web Editor NEW

This project forked from roncoo/roncoo-education

0.0 1.0 0.0 7.6 MB

领课在线教育开源系统是基于领课团队多年的在线教育开发和运营经验的产品。分布式在线教育系统,采用Spring Cloud为核心框架,Eureka为注册中心,Config为配置中心,SBA为应用监控,Zipkin为链路监控等等。

Home Page: https://www.roncoo.com/

License: MIT License

Java 89.99% FreeMarker 9.10% PHP 0.91%

roncoo-education's Introduction

领课教育-领课网络在线教育系统

项目介绍

领课教育是基于领课团队多年的在线教育开发和运营经验的产品,打造一个全行业都适用的在线教育系统。

如果对你有用,请给个star!

其他工程

前端工程(roncoo-education-web):码云地址 | Github地址
配置工程(roncoo-education-config):码云地址 | Github地址

使用文档

演示地址

前端演示地址:领课教育
后台演示地址:管理后台

商业合作

  • 如果想定制开发,我们提供有偿服务支持
  • 如果想运营平台,我们云平台提供平台入驻
  • 商业合作联系QQ:297115770
  • 商业合作联系QQ:513781560
  • 官网地址:http://www.roncoo.net

功能介绍

  • 权限管理功能,多角色多用户自定义配置
  • 系统配置功能,自定义进行站点配置及第三方参数配置
  • 讲师管理功能,讲师申请入驻,后台具有审核功能
  • 课程管理功能,讲师管理自有课程,后台具有审核功能
  • 用户登录功能,同一时间只允许同一个账号在同一个地方登录,防止账号共享
  • 广告管理功能,后台自定义广告设置,增加营销效果
  • 支付功能,系统无缝集成了龙果支付

升级说明

  • 2019-03 集成了链路监控:roncoo-education-server-zipkin
  • 2019-02 集成了应用监控:roncoo-education-server-admin

TODO

  • 动态更新配置(spring cloud bus + kafka + spring cloud config)
  • 日志收集统计(kafka + Elasticsearch + Logstash + Kibana)

技术选型

技术框架 说明 版本
Spring IO Platform 版本维护 Cairo-SR7
Spring Boot 核心技术框架 2.0.8.RELEASE
spring-cloud-netflix 微服务框架 2.0.2.RELEASE
spring-cloud-config 配置中心 2.0.2.RELEASE
spring-cloud-sleuth 服务跟踪 2.0.2.RELEASE
Mybatis 持久层框架 3.4.5
Druid 数据连接池 1.1.12
Swagger 接口文档 1.5.20
Freemarker 模板引擎 2.3.28
Shiro 权限框架 1.4.0
POI 文档处理 3.17
Hutool 通用工具类 2.16.2

软件需求

  • JDK 1.8+
  • MySQL 5.6+
  • Redis 3.0+
  • Maven 3.0+

项目截图

SBA zipkin

流程图说明

  • 系统架构图 系统架构图

  • 课程播放流程 课程播放流程

  • 播放鉴权流程 播放鉴权流程

  • 课程下单流程 课程下单流程

  • 下单回调流程 下单回调流程

项目结构

├─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构建

在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使用

Lombok是一个可以通过简单的注解形式来帮助我们简化消除一些必须有但显得很臃肿的Java代码的工具,通过使用对应的注解,可以在编译源码的时候生成对应的方法。 官方地址:https://projectlombok.org/

1. Eclipse使用方法

把lombok.jar放入Eclipse的根目录,在eclipse.ini配置文件的最后加上

-javaagent:lombok.jar 

2. IntelliJ IDEA使用方法

安装插件,如图所示

图

官方QQ群(加群免费获取sql脚本)

在线教育系统-领课 826617734

项目推荐

roncoo-recharge:码云地址 | Github地址
roncoo-jui-springboot:码云地址 | Github地址

roncoo-education's People

Contributors

1074760496 avatar dabaibashen avatar fengyws avatar ihuangj avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.