Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/html/wp-includes/functions.php on line 6114 2024年11月10日 - 说了一半的话的博客

日期: 2024 年 11 月 10 日

5 篇文章

thumbnail
SpringBoot整合SpringSecurity+JWT实现web应用中的认证和授权
1、什么是SpringSecurity Spring Security 是 Spring 家族中的一个安全管理框架。相比与另外一个安全框架Shiro,它提供了更 丰富的功能,社区资源也比Shiro丰富。 一般来说中大型的项目都是使用SpringSecurity 来做安全框架。小项目有Shiro的比较多,因为相比与SpringSecurity,Shi…
thumbnail
如何搭建springBoot项目中的全局异常处理和自定义异常处理
1 什么是异常 异常(Exception)是在程序执行过程中出现的一种特殊情况或错误。它可以是由于程序逻辑错误、运行环境问题、用户输入错误等原因导致的一种非正常的状态或事件。 在编程领域中,异常通常用来表示一种无法预料或处理的情况,它会导致程序无法继续正常执行。当程序运行过程中遇到异常,如果没有适当的处理机制,可能会导致程序崩溃或产生未预期的结果。…
thumbnail
LeetCode(力扣)数组篇 JAVA刷题详解
 1 简介 是不是有许多小伙伴在刷力扣的时候感觉无从下手?从头按顺序开始刷的童鞋们可能会比较有感触,为什么才第四题就感觉很难了?没关系,本文将对力扣的 1-500 题中不需要会员的数据结构与算法题目(数据库与 shell 除外)进行分类,并推荐一个刷题的顺序。 完全零基础可以刷题吗?不能,至少要基本掌握一门计算机语言的语法。但现…
thumbnail
Docker如何安装redis
1. 拉取redis的镜像文件 # 默认安装最新版本 如果需要指定版本 docker pull redis:版本号 docker pull redis 详细版本请看dockerhub的官网: hub.docker.com 2. 创建redis的容器卷  在当前根目录下创建文件夹 存放配置文件和挂载数据文件 midir -p /t…
thumbnail
Dokcer如何安装mysql
1. 拉取mysql的镜像 查找自己需要的版本 docker search mysql 拉取版本 这里默认为最新的版本 docker pull mysql 2. 创建mysql的配置文件和数据文件 mkdir -p /temp/mysql/data mkdir -p /temp/mysql/conf vim /temp/mysql/conf/hmy…