7 Star 172 Fork 30

程序员楠瓜 / NanjuStar-template

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

💫💫💫楠橘星后台管理(简洁版)

楠橘星后台管理系统

SpringBoot 多模块 + Vue 的简洁版后台管理系统

在线预览

项目链接:http://www.show.nanjustar.top(服务器已过期)

接口链接:http://www.show.nanjustar.top:9090/doc.html/(服务器已过期)

超级管理员账号:nanjustar 密码:123456

普通管理员账号:admin 密码:123456

GitHub地址:https://github.com/duan-nan/nanjustar-template

Gitee地址: https://gitee.com/duan_nan/nanjustar-template

v1.1更新

  1. 界面效果优化,使界面更加丝滑顺畅。(动画优化)
  2. 完成菜单管理界面部分功能(部分功能)
  3. 新增图标库到项目中(Elementui 图标)
  4. 新增日志管理记录(aop + 自定义注解)
  5. 新增在线预览

CSDN动态

nanjustar 后台管理 专栏

(一)nanjustar 楠橘星后台管理系统(简洁版)使用导航

前言

	为什么要做这个项目呢?因为我主要是做java的,平时学习做项目过程中一直在开发后端接口🖌,枯燥的后端开发让我决定自己开发界面🧐。

	vue 端学习一直顺风顺水🤗,直到我决定要自己去搭建后台。。我发现页面端布局、侧边菜单的布置、顶部历史菜单的设计 让我抱头痛哭😭,我开始转向了开源项目... 

	看着开源项目的预览,真的棒,我要用!!!👍  但是问题页随之而来 *npm install Error*是什么鬼👀?? 经历了千辛万苦终于把依赖拉下来了!!😄 但是这这代码好多啊!这么多js!封装这么严重!看不懂啊🤔!!! 最终你选择去寻找简洁版的后台管理界面!🥺

	是的,我想说的就是 我就是你要找的简洁版后台管理界面😎。我们以及搭建好了侧边栏、面包屑、以及顶部历史菜单。 剩下了所有的界面都由你来设计🤠,来完成你自己的作品。

	如果我的项目可以帮到你,请点亮一个小小的star 🌟🌟

目录结构

项目地址:GItee: https://gitee.com/duan_nan/nanjustar-template

🌟🌟🌟nanjusatr-admin是我们的前端项目。🌟🌟🌟

⭐️⭐️⭐️nanjustar是我们的后端项目。⭐️⭐️⭐️

🌈🌈🌈nanjustar.sql 是我们需要使用到的数据库文件,数据库需要使用MySql 8以上的版本。🌈🌈🌈

☀️☀️☀️我们将项目直接拉取到本地之后,只需要进行简单的配置即可启动使用。☀️☀️☀️

数据库:

在本地中新建数据库 nanjustar(也可以根据自身需求进行更改名称),之后运行nanjustar.sql文件。

后端配置:

1. 数据库配置
  我们进入到 nanjustar-mapper 模块中,找到 application-mapper.yml 配置文件进行配置修改,修改数据库url至自己到数据库位置,修改username和password。
  
2. Redis配置
  我们进入到 nanjustar-business 模块中,找到 application-bussiness.yml	配置文件进行配置修改,修改reids 到主机名称,修改至自己redis的即可。

前端配置:

前端项目只需要执行 npm install 或 cnpm install 即可

✨✨✨前后端项目启动之后,我们有两个用户 nanjustar/123456(超级管理员)admin/123456 (管理员),超级管理员拥有权限管理目录的权限,而管理员并不拥有,所以他们的前端侧边栏菜单是不一样的。✨✨✨

后端项目结构:

├──nanjusatr	    --  --   -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  nanjustar父工程
		├── nanjustar-api     	  --  -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  nanjustar-api模块
    		├── src
						├── java
									├── moudle
												├── security  						    -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  权限模块
																├── api  							-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  业务接口
																├── dto 			    -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  dto数据返回类
																├── model					  		-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  实体类
																├── vo  					-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  vo参数接收类
						├── resource
									├── application-api.yml        -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  api模块配置文件
				├── pom.xml
		├── nanjustar-business          --  -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  nanjustar业务模块
    			├── src
							├── java
									├── business              -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  业务实现类
									├── config								-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  配置类
									├── filter								-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  过滤器包
									├── handler								-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  处理器包
									├── util 									-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  工具包
							├── resource
											├── application-business.yml  -- -- -- -- -- -- -- -- -- -- -- -- --  business模块配置文件
						├── pom.xml      -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- nanjustar业务模块  Pom文件
		├── nanjustar-common     -- -- --  -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  nanjustar共用模块
						├── src
								├── java
											├── annotation				 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  注解包
											├── aop                -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  切面包
											├── config             -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  配置包
											├── constant            -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 常量包
											├── core	             -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  基础包
											├── enums							 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  枚举包
											├── exception			-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  自定义异常包
											├── result				-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  统一结果集包
											├── utils							 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  工具包
								├── resource		
												├── application-common.yml
						├── pom.xm   -- --  -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  nanjustar共用模块 Pom文件
		├── nanjustar-mapper     -- -- --  -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  nanjustar数据模块
						├── src
								├── java
    									├── config	                    -- -- -- -- -- -- -- -- -- -- -- -- -- -- --   数据库配置
    									├── handler		               -- -- -- -- -- -- -- -- -- -- -- -- -- -- --   handler处理器
    									├── mapper		                -- -- -- -- -- -- -- -- -- -- -- -- -- -- --   *.Mapper接口
								├── resource	
												├── mapper          -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  mapper.xml 存放位置
       		 							├── application-mapper.yml     	  - -- -- -- -- -- -- -- --  nanjustar数据模块 配置文件
       		 ├── pom.xml -- --  -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  nanjustar数据模块  Pom文件
		├── nanjustar-web     -- -- --  -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  nanjustar-wen 模块
				├── src
						├── java
									├── controller         -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  nanjustar controller
									├── NanjustarApplication.java           -- -- -- -- -- -- -- -- -- -- --  nanjustar主启动类
						├── resource
									├── application.yml     -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  nanjustar-web 配置文件
									├── application-dev.yml -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  nanjustar-web 配置文件
				├── pom.xml    -- -- --  -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  nanjustar-web  Pom文件
				
├── pom.xml	    -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --  nanjustar父工程Pom文件

前端项目结构:

nanjustar-admin
			├── public   
						├── js              -- -- -- -- -- -- js文件夹
								├── lottie.js   -- -- -- -- -- --  动画js
						├── favicon.ico     -- -- -- -- -- -- Logo 图标
						├── index.html      -- -- -- -- -- -- index.html  
			├── src
					 ├── api							-- -- -- -- -- -- api接口目录
					 ├── assets						-- -- -- -- -- -- 静态资源目录
					 ├── component				-- -- -- -- -- -- 组件目录 
					 ├── layout						-- -- -- -- -- -- 布局目录
					 ├── router						-- -- -- -- -- -- 路由目录
					 ├── store						-- -- -- -- -- -- 缓存目录  
					 ├── utils						-- -- -- -- -- -- 工具目录
					 ├── views						-- -- -- -- -- -- 界面目录
					 ├── App.vue					-- -- -- -- -- -- App.vue
					 ├── main.js					-- -- -- -- -- -- main.js
		  ├── babel.config.js
		  ├── package.json				  -- -- -- -- -- -- package.json  
		  ├── package-locak.json
		  ├── vue.config.js					-- -- -- -- -- -- vue.config.js

项目特点

  • 后端开发参考“若依开源项目”,“风宇个人博客”进行开发。
  • 后台使用"element-ui"设计,侧边栏,历史标签,面包屑自动生成等。
  • 前台菜单路由通过数据库查询,根据登陆用户的权限等级进行获取渲染,实现权限分级。
  • 登陆界面采用 lottie 动画,极大的提升了项目的美观度。
  • 后台界面仅开发欢迎界面,给使用者留下足够空间,便于进行二次开发。
  • 前端代码层次简单,没有进行严重封装,便于后段开发者阅读扩展开发。
  • 代码遵循阿里巴巴开发规范,代码整洁,便于进行二次开发。

运行环境

开发工具 说明
IDEA Java开发工具IDE
WebStorm Vue开发工具IDE
Navicat MySQL远程连接工具
Medis Redis远程连接工具
开发环境 版本
JDK 1.8
MySQL 8.0.25
spring-Redis 2.5.5
Vue 2.6.11
Vex 3.4.0

项目截图

在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 在这里插入图片描述 在这里插入图片描述

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多模块、SpringBoot 2.5 、SpringSecurity、jwt、redis等 前端技术栈:Vue 2.*、vuex、axios、lottie动画、element-UI 等 展开 收起
Apache-2.0
取消

贡献者

全部

近期动态

加载更多
不能加载更多了
Java
1
https://gitee.com/duan_nan/nanjustar-template.git
git@gitee.com:duan_nan/nanjustar-template.git
duan_nan
nanjustar-template
NanjuStar-template
master

搜索帮助