1
0
mirror of https://github.com/dqjdda/Aurora.git synced 2018-11-06 05:33:29 +00:00

Aurora

https://img.shields.io/badge/build-success-brightgreen.svg?longCache=true&style=flat-square https://img.shields.io/badge/license-Apache%202-blue.svg?longCache=true&style=flat-square https://img.shields.io/badge/springboot-2.0.4-yellow.svg?longCache=true&style=popout-square https://img.shields.io/badge/apache%20shiro-1.4.0-green.svg?longCache=true&style=flat-square

Aurora是一个简单高效的后台管理系统。项目基础框架采用全新的Java Web开发框架 —— Spring Boot2.0.4消除了繁杂的XML配置使得二次开发更为简单数据访问层采用Spring boot Jpa可快速高效对数据进行操作消除了大量传统XML配置SQL的代码分页使用Pageable安全框架采用时下流行的Apache Shiro加入了部门到用户级别的权限控制前端页面使用KidAdmin构建并提供多套配色以供选择。

预览地址

https://auauz.net

项目相关教程

Spring boot循序渐进(码云)

Spring boot循序渐进(github)

SSM + shiro + redis 版移步

https://gitee.com/quella01/Quella

功能模块

系统功能模块组成如下所示:

|      _       _  _     ___      ____     ___        _
|     /.\     FJ  L]   F _ ",   F __ ]   F _ ",     /.\
|    //_\\   J |  | L J `-'(|  J |--| L J `-'(|    //_\\
|   / ___ \  | |  | | |  _  L  | |  | | |  _  L   / ___ \
|  / L___J \ F L__J J F |_\  L F L__J J F |_\  L / L___J \
| J__L   J__J\______/J__| \\__J\______/J__| \\__J__L   J__L
| |__L   J__|J______F|__|  J__|J______F|__|  J__|__L   J__|
|
| :: Spring Boot ::       (v2.0.4.RELEASE)
|
├─系统管理
│  ├─用户管理
│  ├─部门管理、组织机构展示
│  ├─菜单管理
│  ├─角色管理
│  ├─权限管理
│  ├─字典管理
│  └─接口文档
├─系统监控
│  ├─实时控制台
│  ├─Redis终端
│  ├─SQL监控
│  ├─在线用户
│  └─系统日志
│─第三方工具
│  │-邮件工具
│  │-阿里短信
│  │-支付宝支付
│  │-七牛云储存
│  │-SM.MS图床
│  └─百度富文本编辑器
└─任务调度
   ├─定时任务
   └─调度日志

技术选型

后端

  • 基础框架Spring Boot 2.0.4.RELEASE

  • 持久层框架Spring boot Jpa

  • 安全框架Apache Shiro 1.4.0

  • 摸板引擎Thymeleaf 3.0.9.RELEASE

  • 数据库连接池阿里巴巴Druid 1.1.10

  • 缓存框架Redis

  • 日志打印logback+log4jdbc

  • IP地址池 ip2region

  • 接口文档 swagger2

  • 工具包hutool-all

  • 任务调度quartz

  • 其他fastjsonaopMapStruct等。

前端

开发环境

  • JDK8

  • IDEIntelliJ IDEA 2018.2.2Ultimate

  • 依赖管理Maven

  • 数据库MySQL 5.5.59

  • 版本管理git

系统部分功能预览

  • 前端模板使用kitadmin前端框架使用layui

  • 系统首页

  • 组织结构

  • 锁屏功能

  • 菜单管理

  • 日志管理

  • Redis终端

  • 实时控制台

开发与部署

账号aurora 密码123456

码云地址:https://gitee.com/hgpt/Aurora

GitHub 地址:https://github.com/dqjdda/Aurora

下载后以Maven项目的方式导入Eclipse或者IDEA。

1、项目需安装lombok插件

2、数据库文件目录 resources/sql/aurora.sql

3、项目需依赖redis如果没安装reids请求将报错安装步骤如下

安装Redis

Redis的下载地址为https://github.com/MicrosoftArchive/redis/releases 这里我们下载 Redis-x64-xxx.zip压缩包到C盘解压后。打开一个CMD窗口输入如下命令

C:\Users\Administrator>cd c:\Redis-x64-3.2.100
c:\Redis-x64-3.2.100>redis-server.exe redis.windows.conf
                _._
           _.-``__ ''-._
      _.-``    `.  `_.  ''-._           Redis 3.2.100 (00000000/0) 64 bit
  .-`` .-```.  ```\/    _.,_ ''-._
 (    '      ,       .-`  | `,    )     Running in standalone mode
 |`-._`-...-` __...-.``-._|'` _.-'|     Port: 6379
 |    `-._   `._    /     _.-'    |     PID: 6404
  `-._    `-._  `-./  _.-'    _.-'
 |`-._`-._    `-.__.-'    _.-'_.-'|
 |    `-._`-._        _.-'_.-'    |           http://redis.io
  `-._    `-._`-.__.-'_.-'    _.-'
 |`-._`-._    `-.__.-'    _.-'_.-'|
 |    `-._`-._        _.-'_.-'    |
  `-._    `-._`-.__.-'_.-'    _.-'
      `-._    `-.__.-'    _.-'
          `-._        _.-'
              `-.__.-'
[6404] 25 Dec 09:47:58.890 # Server started, Redis version 3.2.100 

然后打开另外一个CMD终端输入

C:\Users\Administrator>cd c:\Redis-x64-3.2.100
c:\Redis-x64-3.2.100>redis-cli.exe
127.0.0.1:6379>

准备工作做完后直接使用Spring Boot的入口类me.aurora.AuroraRun启动即可,访问地址[localhost]

部署时首先使用使用mvn package将项目打包成jar或war然后使用命令java -jar aurora-0.0.1-SNAPSHOT.war启动即可当然也可以使用tomcat部署。

docker 中部署

反馈交流

本人能有有限,项目如有不足之处,望指出

Description
No description provided
Readme 11 MiB
Languages
JavaScript 46.1%
HTML 22.5%
Java 20.3%
CSS 9.1%
SQL 2%