摘要:
SpringBoot 配置拦截器 用途: 日志记录 权限检查 性能监控 直接上代码: MyInterceptor.java package com.zhuantai.interceptor; import org.springframework.web.servlet.HandlerIntercep 阅读全文
摘要:
SpringBoot 动态切换数据源 概述:利用上次搭建的MySQL主从复制来实验动态切换数据源。用master来写,用slave用来读。 GITHUB:https://github.com/baomidou/dynamic-datasource-spring-boot-starter 1.搭建一个 阅读全文
摘要:
CommandLineRunner 系统启动任务 1.CommandLineRunner MyCommandLineRunner.java package com.zhuantai.commandlinerunner; import org.springframework.boot.CommandL 阅读全文
摘要:
SpringBoot @ControllerAdvice的三种使用场景 1.概述 @ControllerAdvice 有三个方面的功能: 全局异常处理 全局数据绑定 全局数据预处理 2.全局异常处理 (一)返回字符串 MyGlobalException.java package com.zhuant 阅读全文
摘要:
SpringSecurity 动态配置权限 gitee源码:https://gitee.com/antia11/spring-security-demos/tree/master/security-dynamic 1.搭建一个简单 SpringSecurity 环境 secruity.sql /* 阅读全文
摘要:
引入SpringSecurity对已有项目进行权限控制 1.引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </de 阅读全文
摘要:
如何优化网站性能 1.本地缓存 Caffeine <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>2.7.0</version> </de 阅读全文
摘要:
人力资源管理系统 一、登录细节整理 前端 Login.vue <template> <div> <el-form :rules="rules" ref="loginForm" :model="loginForm" class="loginContainer"> <h3 class="loginTit 阅读全文
摘要:
常用工具类Utils 1.RespBean 返回值对象 /** * @author ANTIA1 * @date 2021/7/12 15:20 */ public class RespBean { private Integer status; private String msg; privat 阅读全文
摘要:
常用Maven包 1.字符串处理 guava <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>30.1.1-jre</version> </dependency> 帮助文 阅读全文