OPSLI 低代码快速开发平台

OPSLI 低代码快速开发平台

OPSLI 快速开发平台 (已开源)

关于

OPSLI 是一款的低代码快速平台,零代码开发,致力于做更简洁的后台管理系统!

OPSLI 快速开发平台基于springboot、vue、element-ui ,项目采用前后端分离架构,热插拔式业务模块与插件扩展性高 ,代码简洁,功能丰富,开箱即用,帮助Java项目解决70%的重复工作,让开发更关注业务逻辑,既能快速提高效率,节省研发成本,同时又不失灵活性!

地址

技术选型

前端

  • vue-admin-beautiful

后端版本

单机版

名称版本号 名称版本号
jdk版本^1.8 springboot版本^2.3.0.RELEASE
mybatis-plus版本^3.4.0 pagehelper版本^1.1.0
druid版本^1.1.17 dynamic版本^2.5.4
shiro-redis版本^3.3.1 jwt版本^3.10.3
ehcache版本^3.9.0 easyexcel版本^2.2.6
kaptcha版本^0.0.9 guava版本^29.0-jre
enjoy版本^4.9.03 hutool版本^5.4.2

在线演示


  • 数据库监控/系统接口
  • 账号: admin
  • 密码: 123456

代码结构

.
├── opsli-api                                               对外API 控制中心
│   ├── src
│   │   ├── main
│   │   │   ├── java
│   │   │   │   └── org
│   │   │   │       └── opsli
│   │   │   │           └── api
│   │   │   │               ├── base                          API 基础
│   │   │   │               ├── conf                          API 自动装配
│   │   │   │               ├── msg                           API 信息
│   │   │   │               ├── thread                        API 线程工厂
│   │   │   │               ├── utils                         API 工具类
│   │   │   │               ├── web                           API Web层
│   │   │   │               └── warpper                       API 封装对象
│   │   │   │
├── opsli-base-support                                      基础模块
│   ├── opsli-common                                          基础 - 公共模块
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── org
│   │   │   │   │       └── opsli
│   │   │   │   │           └── common
│   │   │   │   │               ├── annotation                  公共模块 - 注解类
│   │   │   │   │               ├── api                         公共模块 - Result内部文件(暂时无用)
│   │   │   │   │               ├── base                        公共模块 - 基础类
│   │   │   │   │               ├── constants                   公共模块 - 常量
│   │   │   │   │               ├── enums                       公共模块 - Enums
│   │   │   │   │               ├── exception                   公共模块 - 异常类
│   │   │   │   │               ├── msg                         公共模块 - 信息
│   │   │   │   │               └── utils                       公共模块 - 工具类 
│   │   │   │   │
│   └── opsli-core                                          基础 - 核心模块
│       ├── src
│       │   ├── main
│       │   │   ├── java
│       │   │   │   └── org
│       │   │   │       └── opsli
│       │   │   │           └── core
│       │   │   │               ├── aspect                      核心模块 - AOP切面
│       │   │   │               ├── base                        核心模块 - 基础类 Entity Service
│       │   │   │               ├── cache                       核心模块 - 缓存处理
│       │   │   │               ├── conf                        核心模块 - 全局统一自动装配
│       │   │   │               ├── general                     核心模块 - 打印信息
│       │   │   │               ├── handler                     核心模块 - 异常拦截处理
│       │   │   │               ├── listener                    核心模块 - 系统监听器
│       │   │   │               ├── msg                         核心模块 - 信息
│       │   │   │               ├── persistence                 核心模块 - 查询条件构造器
│       │   │   │               │   └── querybuilder
│       │   │   │               │       └── chain               核心模块 - 查询条件构造器 - 责任链(例: 租户处理)
│       │   │   │               ├── security                    核心模块 - 权限验证 - Shiro
│       │   │   │               ├── thread                      核心模块 - 线程处理
│       │   │   │               ├── utils                       核心模块 - 工具类
│       │   │   │               └── waf                         核心模块 - 软件防火墙
│       │   │   │
├── opsli-modulars                                        业务
│   ├── opsli-modulars-system                               系统模块
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── org
│   │   │   │   │       └── opsli
│   │   │   │   │           └── modulars
│   │   │   │   │               └── system
│   │   │   │   │                   ├── depart                  系统模块 - 部门(暂无)
│   │   │   │   │                   ├── dict                    系统模块 - 字典
│   │   │   │   │                   ├── login                   系统模块 - 登录
│   │   │   │   │                   ├── logs                    系统模块 - 日志
│   │   │   │   │                   ├── menu                    系统模块 - 菜单
│   │   │   │   │                   ├── role                    系统模块 - 角色
│   │   │   │   │                   ├── tenant                  系统模块 - 租户
│   │   │   │   │                   └── user                    系统模块 - 用户
│   │   │   │   │
├── opsli-plugins                                         插件
│   ├── opsli-plugins-ehcache                               Ehcache缓存插件 (二级缓存)
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── org
│   │   │   │   │       └── opsli
│   │   │   │   │           └── plugins
│   │   │   │   │               └── cache
│   │   │   │   │                   ├── conf                  Ehcache缓存插件 - 自动装配
│   │   │   │   │                   ├── msg                   Ehcache缓存插件 - 信息
│   │   │   │   │                   └── service               Ehcache缓存插件 - 服务
│   │   │   │   │
│   ├── opsli-plugins-excel                                 Excel插件
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── org
│   │   │   │   │       └── opsli
│   │   │   │   │           └── plugins
│   │   │   │   │               └── excel
│   │   │   │   │                   ├── annotation            Excel插件 - 注解
│   │   │   │   │                   ├── exception             Excel插件 - 异常类
│   │   │   │   │                   ├── factory               Excel插件 - 工厂
│   │   │   │   │                   ├── listener              Excel插件 - 监听器
│   │   │   │   │                   └── msg                   Excel插件 - 信息
│   │   │   │   │
│   ├── opsli-plugins-mail                                  邮件插件
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── org
│   │   │   │   │       └── opsli
│   │   │   │   │           └── plugins
│   │   │   │   │               └── mail
│   │   │   │   │                   ├── exception             邮件插件 - 异常类
│   │   │   │   │                   ├── handler               邮件插件 - 处理类
│   │   │   │   │                   ├── model                 邮件插件 - 模型
│   │   │   │   │                   └── msg                   邮件插件 - 信息
│   │   │   │   │
│   └── opsli-plugins-redis                                 Redis缓存插件(一级缓存)
│       ├── src
│       │   ├── main
│       │   │   ├── java
│       │   │   │   └── org
│       │   │   │       └── opsli
│       │   │   │           └── plugins
│       │   │   │               └── redis
│       │   │   │                   ├── conf                  Redis缓存插件 - 自动装配
│       │   │   │                   ├── exception             Redis缓存插件 - 异常类
│       │   │   │                   ├── lock                  Redis缓存插件 - 分布式锁
│       │   │   │                   ├── msg                   Redis缓存插件 - 信息
│       │   │   │                   ├── pushsub               Redis缓存插件 - 消息订阅
│       │   │   │                   └── scripts               Redis缓存插件 - 脚本处理
│       │   │   └── resources
│       │   │   │    └── lua                                  Redis缓存插件 - Lua脚本
│       │   │   │
└── opsli-starter                                        启动类
    └── src
        └── main
            ├── java
            │   └── org
            │       └── opsli                              启动类 - 启动器
            └── resources                                  启动类 - 配置
                └── config                                 启动类 - 其他配置

授权协议声明


  1. 已开源的代码,授权协议采用 AGPL v3 + Apache Licence v2 进行发行。
  2. 您可以免费使用、修改和衍生代码,但不允许修改后和衍生的代码做为闭源软件发布。
  3. 修改后和衍生的代码必须也按照AGPL协议进行流通,对修改后和衍生的代码必须向社会公开。
  4. 如果您修改了代码,需要在被修改的文件中进行说明,并遵守代码格式规范,帮助他人更好的理解您的用意。
  5. 在延伸的代码中(修改和有源代码衍生的代码中)需要带有原来代码中的协议、版权声明和其他原作者规定 需要包含的说明(请尊重原作者的著作权,不要删除或修改文件中的@author信息)。
  6. 您可以应用于商业软件,但必须遵循以上条款原则(请协助改进本作品)。
  7. 您若套用本平台的一些代码或功能参考,需要在您的软件介绍明显位置说明出处。

  1. The open source code, the license agreement adopts AGPL v3 + Apache Licence v2 for distribution.
  2. You can use, modify and derive the code for free, but it is not allowed to release the modified and derived code as closed source software.
  3. The modified and derived code must also be circulated in accordance with the AGPL agreement, and the modified and derived code must be disclosed to the public.
  4. If you modify the code, you need to explain it in the modified file and follow the code format specification to help others better understand your intentions.
  5. In the extended code (modified and derived code from the source code), the agreement, copyright notice and other instructions required by the original author must be included in the original code (please respect the original author’s copyright and do not delete or modify @Author information in the file).
  6. You can apply to commercial software, but you must follow the principles of the above terms (please help improve this work).
  7. If you apply some codes or function references of this platform, you need to explain the source in an obvious place in your software introduction.

作者寄语

感谢Star,感恩相遇,愿世间美好与我们环环相扣,加油!屏幕前的我们,打破桎梏,坚守初心。其实人生改变命运的机会并没有太多,我们并不是不优秀,我们也并不是一无是处,我们也希望驻足山巅被众人仰望,也许我们缺少的只是一个机会,缺少的只是生命中的导师,我希望这个框架帮助到更多的人,希望有一天,我们面试的时候不再胆怯,希望有一天别人看到的不仅仅是你的努力,还有你的功成名就,出人头地。

支持

谢谢您愿意支持开源

本文由 在码圈 创作,如果您觉得本文不错,请随意赞赏
采用 知识共享署名4.0 国际许可协议进行许可
您可以自由的转载和修改,但请务必注明文章来源并且不可用于商业目的。
本站部分内容收集于互联网,如果有侵权内容、不妥之处,请联系我们删除。敬请谅解!
原文链接:https://www.bedebug.com/archives/opsli-boot
最后更新于:2020-11-28 12:39:52

请博主喝咖啡 ☕.