springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)

文章目录

  • 前言
  • 一、开发环境配置
    • 1.开发工具
    • 2.后台框架
    • 3.前端模板
    • 4.数据库
    • 5.服务器
  • 二、数据库设计
    • 1.用户表 - cuinn_user
    • 2.角色表 - cuinn_role
    • 3.角色权限表 - cuinn_role_authorities
    • 4.菜单表 - cuinn_menu
    • 5.日志表 - cuinn_operater_log
    • 6.数据备份表 - cuinn_operater_log
  • 三、系统设计
    • 1.系统结构
    • 2.代码结构
  • 四、系统实现
    • 1.用户登录
    • 2.后台首页
    • 3.菜单模块
    • 4.角色模块
    • 5.用户模块
    • 6.日志模块
    • 7.数据备份
  • 总结


前言

作为一名开发人员我们知道每个标准的的管理系统有些部分是必不可少的:

1.用户管理
2.角色管理
3.菜单管理
4.日志管理
5.数据备份

我大概列出这几个模块,那么每次设计实现一个系统都需要做这些重复的模块功能是不是不符合我们架构设计的规范,因此我们需要把这些相同的部分抽离出来,作为一个项目开发的基础脚手架系统,之后做开发只需要在这个系统的基础上进行新功能的开发,那就很方便了。


一、开发环境配置

1.开发工具

Eclipse

2.后台框架

SpringBoot

3.前端模板

SpringBoot自带前端模板:thymeleaf

4.数据库

MySql8.0

5.服务器

SpringBoot内嵌tomcat

二、数据库设计

1.用户表 - cuinn_user

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第1张图片

2.角色表 - cuinn_role

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第2张图片

3.角色权限表 - cuinn_role_authorities

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第3张图片

4.菜单表 - cuinn_menu

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第4张图片

5.日志表 - cuinn_operater_log

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第5张图片

6.数据备份表 - cuinn_operater_log

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第6张图片

三、系统设计

1.系统结构

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第7张图片

2.代码结构

包结构:
springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第8张图片
系统架构模式:
B/S模式,浏览器/服务端 模式
springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第9张图片

四、系统实现

1.用户登录

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第10张图片
关键逻辑代码:

@RequestMapping(value = "/login", method=RequestMethod.POST)
	@ResponseBody
	public Result<Boolean> login(HttpServletRequest request, User user, String cpacha) {
		if(user == null) {
			return Result.error(CodeMsg.DATA_ERROR);
		}
		//统一实体验证
		CodeMsg validate = ValidateEntityUtil.validate(user);
		
		if(validate.getCode() != CodeMsg.SUCCESS.getCode()) {
			return Result.error(validate);
		}
		//验证码校验
		if(StringUtils.isEmpty(cpacha)) {
			return Result.error(CodeMsg.CPACHA_EMPTY);
		}
		//说明验证码不为空,从sessino里获取验证码
		Object attribute = request.getSession().getAttribute("admin_login");
		if(attribute == null) {
			return Result.error(CodeMsg.SESSION_EXPIRED);
		}
		//表示session未失效,进一步判断验证码是否正确
		if(!cpacha.equalsIgnoreCase(attribute.toString())) {
			return Result.error(CodeMsg.CPACHA_ERROR);
		}
		//开始查询数据库
		User findByUsername = userService.findByUsername(user.getUsername());
		if(findByUsername == null) {
			return Result.error(CodeMsg.ADMIN_USERNAME_NO_EXIST);
		}
		if(!findByUsername.getPassword().equals(user.getPassword())) {
			return Result.error(CodeMsg.ADMIN_PASSWORD_ERROR);
		}
		//判断用户状态是否可用
		if(findByUsername.getStatus() == User.ADMIN_USER_STATUS_UNABLE) {
			return Result.error(CodeMsg.ADMIN_USER_UNABLE);
		}
		//判断用户所属角色是否可用
		if(findByUsername.getRole() == null || findByUsername.getRole().getStatus() == Role.ADMIN_ROLE_STATUS_UNABLE){
			return Result.error(CodeMsg.ADMIN_USER_ROLE_UNABLE);
		}
		//判断用户所属角色是否有权限
		if(findByUsername.getRole().getAuthorities() == null || findByUsername.getRole().getAuthorities().size() == 0) {
			return Result.error(CodeMsg.ADMIN_USER_ROLE_AUTHORITIES_EMPTY);
		}
		//密码正确,将登录信息放入session
		request.getSession().setAttribute(SessionConstant.SESSION_USER_LOGIN_KEY, findByUsername);
		//销毁session中的验证码
		request.getSession().setAttribute("admin_login", null);
		log.info("user="+user);
		operaterLogService.add("用户【"+ findByUsername.getUsername() + "】于【"+ StringUtil.getFormatterDate(new Date(), "yyyy-MM-dd HH:mm:ss") +"】登录系统!");
		return Result.success(true);
	}

2.后台首页

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第11张图片

3.菜单模块

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第12张图片

4.角色模块

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第13张图片

5.用户模块

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第14张图片

6.日志模块

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第15张图片

7.数据备份

springboot+thymeleaf+mysql实现脚手架权限管理系统(超详细讲解)_第16张图片
附上完整pom.xml文件



<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0modelVersion>
  <packaging>warpackaging>
  <parent>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-parentartifactId>
    <version>2.3.11.RELEASEversion>
    <relativePath/> 
  parent>
 
  <groupId>com.cuinngroupId>
  <artifactId>baseartifactId>
  <version>0.0.1-SNAPSHOTversion>

  <name>basename>
  
  <url>http://www.example.comurl>

  <properties>
    <project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
    <maven.compiler.source>1.8maven.compiler.source>
    <maven.compiler.target>1.8maven.compiler.target>
    <java.version>1.8java.version>
  properties>

  <dependencies>
    <dependency>
      <groupId>org.springframework.bootgroupId>
      <artifactId>spring-boot-starter-freemarkerartifactId>
    dependency>
    <dependency>
      <groupId>org.springframework.bootgroupId>
      <artifactId>spring-boot-starter-webartifactId>
    dependency>
	<dependency>
	    <groupId>org.springframework.bootgroupId>
	    <artifactId>spring-boot-starter-data-jpaartifactId>
	dependency>
    <dependency>
      <groupId>mysqlgroupId>
      <artifactId>mysql-connector-javaartifactId>
      <scope>runtimescope>
    dependency>
    <dependency>
      <groupId>org.springframework.bootgroupId>
      <artifactId>spring-boot-starter-testartifactId>
      <scope>testscope>
      <exclusions>
        <exclusion>
          <groupId>org.junit.vintagegroupId>
          <artifactId>junit-vintage-engineartifactId>
        exclusion>
      exclusions>
    dependency>
    <dependency>
  	  <groupId>junitgroupId>
  	  <artifactId>junitartifactId>
  	  <version>4.0version>
  	  <scope>testscope>
  	dependency>
  	<dependency>
	  <groupId>org.springframework.bootgroupId>
	  <artifactId>spring-boot-devtoolsartifactId>
	  <optional>trueoptional>
	dependency>
	<dependency>
      <groupId>org.apache.commonsgroupId>
      <artifactId>commons-lang3artifactId>
    dependency>
    <dependency>
	  <groupId>commons-codecgroupId>
	  <artifactId>commons-codecartifactId>
 	dependency>
 	<dependency>
      <groupId>com.alibabagroupId>
      <artifactId>fastjsonartifactId>
      <version>1.2.31version>
    dependency>	
  dependencies>
  

  <build>
    <plugins>
      <plugin>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-maven-pluginartifactId>
      plugin>
    plugins>
  build>

project>

总结

好久没更新了,今天闲来写一篇文章,限于篇幅,代码不过多粘贴,需要源代码请联系我QQ:1172820051,原创不易,请大佬们多多支持,谢谢!

你可能感兴趣的:(springboot,eclipse,java,spring,boot,maven,mysql)