“后端“
后端相关maven阿里镜像配置
每次都要去找比较麻烦,挪过来自己看的😁 ▪apache mavne中央仓库 ▪https://search.maven.org/ ▪https://mvnrepository.com/ 方式一:全局配置 可以添加阿里云的镜像到maven的setting.xml配置中,这样就不需要每次在pom中,添加镜像仓库的配置,在mirrors节点下面添加子节点: <mirror> <id>nexus-aliyun</id> <mirrorOf>central</mirrorOf> &...
SpringBoot日期格式化多种方式
@JsonFormat 注解方式 在单个实体类属性上添加个注解 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date startDate; 前端参数传递 { "startDate" : "2024-02-26 15:15:15" } 这个方式比较自由,缺点就是麻烦,每个实体类都得写 全局格式化方式 全局配置,后续可以不用单独加注解 package com.xy.config; import com.fasterxml.jackson.databind....
Git远程分支的删除与刷新
刷新远程分支 git remote update origin --prune 远程分支拉取到本地并切换git pull git checkout -b 本地分支名 origin/远程分支名 删除本地分支 -d 不能包含未合并的更改和未推送的提交 -D 带有大写-- delete --force字母D(它是 的别名)的标志会强行删除本地分支 git branch -D local_branch_name git branch -d local_branch_name 删除远程分支 git push origin --delete dist-notice ...
MySQL自动备份脚本
mysqldump命令将数据库中的数据备份成一个文本文件,表的结构和数据将存储在生成的文本文件中 备份数据库多个表 # 备份一个数据库下的多个表 # username表示用户名 # pwd表示密码 # localhost为数据库地址 # dbname表示数据库名称 # table1和table2参数表示需要备份的表的名称,为空则整个数据库备份 mysqldump -u username -p pwd -h localhost --default-character-set=utf8 dbname table1 table2 > BackupNam...
Mysql性能相关的一些语句
索引情况 #1.查询冗余索引 select * from sys.schema_redundant_indexes; #2.查询未使用过的情况 select * from sys.schema_unused_indexes; #3.查询索引的使用情况 select index_name,rows_selected,rows_inserted,rows_updated,rows_deleted from sys.schema_index_statistics where table_schema = 'dbname'; 表相关 #1.查询表的访问量 se...
vmwar挂载宿主机目录
vmwar挂载宿主机目录 2.在Linux中安装vm-tools: yum install -y open-vm-tools open-vm-tools-desktop 3.挂载: 查看共享的目录 # vmware-hgfsclient vmwar-soft 执行命令挂载目录 mount -t fuse.vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other,nonempty 修改数据令系统启动时自动挂载 vim /etc/fstab #在末尾另起一行 添加: .host:/ /mnt/hgfs fuse.vmhgf...
socket-Redis创建fd
socket-Redis创建fd-uid对应关系 直接使用 <?php declare(strict_types=1); /** * * This is my open source code, please do not use it for commercial applications. * * For the full copyright and license information, * please view the LICENSE file that was distributed with this source co...
Hyperf-redis锁
Hyperf-redis锁 直接使用 <?php declare(strict_types=1); /** * * This is my open source code, please do not use it for commercial applications. * * For the full copyright and license information, * please view the LICENSE file that was distributed with this source code * * @a...
hyperf-jwt登录限制登录次数
hyperf