10 Star 71 Fork 7

世纪末的架构师 / system-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0

项目介绍

基于SpringBoot + Vue开发的后台管理系统模板

前言

像若依框架中的描述那样,我也一直想开发一个属于自己的后台管理系统模板,但是自己最初没有接触过前后端分离的系统,开发前端时被各种样式和菜单动态渲染搞得痛不欲生, 开发后端时被Spring Security虐的体无完肤,期间无数次想过用熟练一套优秀的开源框架,但是本着这样一个浮躁的心态去学习,最终的结果就是再次被各种优秀的开源框架摁在地上摩擦......

痛定思痛,深刻意识到自己应该沉下心来去踏踏实实的学习技术。终于在一段时间以后,我将之前的问题一一解决并且成功的看懂了一些优秀的开源框架,内心对自己开发一套后台管理系统模板的渴望 愈发强烈,有想法就去做,最后我终于开发出了属于自己的一套后台管理系统模板。

开发完成后,深刻的意识到只是开发完成实现相应的基本功能是远远不够的,系统在遇到高并发、多用户访问时的各种情况处理使我明白,万里长征我现在只是跨出了第一步。后续我会持续进行优化迭代,您的star就是我的动力❤️

项目地址

Github地址: https://github.com/Architect-Java/system-template

Gitee地址: https://gitee.com/dream-flight/system--template

管理员账号:admin 密码:123456

测试账号:test 密码:1234567

目录结构

前端项目位于system-vue目录

后端项目位于system-springboot目录

SQL文件为根目录的system-mysql8.sql文件,需要MySQL8及以上的版本

前端项目:

system-vue
├── public   
├── api                -- api请求接口目录
├── assets             -- 静态资源
├── components         -- 全局组件
├── constant           -- 全局常量
├── filter             -- 过滤器
├── icons              -- svg图标
├── layout             -- 布局目录
├── router             -- 路由
├── store              -- 全局缓存
├── styles             -- scss样式目录
├── utils              -- 工具目录
├── views              -- 页面视图
├── App.vue            -- App.vue
├── main.js            -- main.js
└── permission.js      -- 路由导航守卫  

后端项目

system-springboot
├── annotation         --  自定义注解
├── aspect             --  aop切面
├── config             --  配置模块
├── constant           --  静态常量模块
├── controller         --  控制器模块
├── dto                --  dto模块
├── entity             --  实体类模块
├── enums              --  枚举模块
├── filters    	       --  过滤器模块
├── generator	       --  逆向工程模块
├── handler            --  处理器模块(自定义JWT权限过滤器)
├── mapper             --  数据持久化模块
├── service            --  业务处理模块
├── util               --  工具类模块
└── vo        	       --  vo模块

项目运行:

拉取项目到本地后,在数据库中直接运行system-mysql8.sql文件即可,数据库会自动创建好并导入数据。接着需要修改项目配置类中相应的参数信息。接着在前端项目中执行npm install方法下载前端项目对应的依赖后项目即可成功启动。

项目启动成功后输入管理员账号:admin 密码:123456进行登录即可进入系统

本地接口文档地址:http://localhost:8090/doc.html

代码生成器运行: 在使用Mybatis-Plus代码生成器时,需要先将/src/main/java/com/zrkizzy/template/generator目录下的CodeGentrator文件中数据库连接参数以及数据库用户名密码进行相应的修改后即可成功运行

注意: 先启动后端项目,再启动前端项目,前端项目很多数据以及配置由后端动态加载

项目特点

  • 前端样式参考"若依框架"、"element-admin"、"风宇的个人博客"、"楠橘星后台管理"进行设计
  • 使用"element-ui"进行样式渲染,重写部分"element-ui"样式源码,侧边栏、面包屑导航自动生成
  • 采用RBAC模型,支持动态权限分配,前端菜单与后台权限实时更新
  • 项目前后端分离开发,适应当前潮流
  • 页面切换采用了NProgress进行过渡,增加项目美观程度
  • 使用Spring AOP自定义注解实现日志管理
  • 集成Mybatis-Plus代码生成器,简化后续开发
  • 前端代码层次简单,没有进行严重封装,便于后端开发者阅读与扩展开发
  • 后端代码编写遵循阿里巴巴开发规范,利于开发者学习
  • 项目仅完成后台管理系统最基本功能,无任何业务侵入,利于二次开发

技术介绍:

前端: vue + vuex + vue-router + axios + element-ui + sass + vue-cropper + dayjs + nprogress
后端: SpringBoot + SpringSecurity + JWT + Swagger2 + MyBatisPlus + MySQL + Redis + Freemarker + FastJson + Kaptcha

开发环境

开发工具 功能作用
Idea Java开发工具
Navicat MySQL连接工具
VSCode Vue开发工具
Medis Redis连接工具
开发环境 版本
JDK 1.8
MySQL 8.0.13
Vue 2.6.11
Redis 6.0.5

项目截图

login

dashboard

profile-baseinfo

profile-avatar

menu

swagger

role

log

log-info

401

项目总结

一直记得我第一个完整开发的Web项目是大二给学校开发的评奖评优管理系统,还记得那时的Layui官网还没有下线,jQuery仍然占据着一片天。对于新手来说,后台管理系统模板还是比较容易上手的,在集成了Mybatis-Plus代码生成器后开发难度进一步下降,适合初学者学习开发以及复现,个人认为难点更多在于前端样式的手动实现与搭建。项目中的不足之处还请大家见谅,有问题和好的建议也欢迎大家私聊我,也欢迎大家加入群聊当中,我们相互鼓励、一起探讨、共同进步,与大家共勉!

交流群

QQ
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

简介

基于SpringBoot + Vue开发的前后端分离的后台管理系统模板,采用SpringSecurity + JWT进行权限管理。采用element-ui进行样式渲染,页面交互友好。项目代码无过度封装和任何业务入侵,便于进行二次开发。 展开 收起
Apache-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
Java
1
https://gitee.com/dream-flight/system-template.git
git@gitee.com:dream-flight/system-template.git
dream-flight
system-template
system-template
master

搜索帮助