摘要:
引入 jedis <!-- https://mvnrepository.com/artifact/redis.clients/jedis --> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> 阅读全文
摘要:
windows 杀死端口占用进程 查找使用8080端口的进程 netstat -ano |findstr "8080" 杀死该进程 tasklist |findstr "8504" 阅读全文
摘要:
在管理员cmd输入以下命令 强制结束该卷所有句柄: chkdsk D: /f 阅读全文
摘要:
找之前的jar线程kill掉! ps -ef|grep xxx.jar|grep -v grep 启动 nohup java -jar xxxx.jar --spring.profiles.active=prod >msg.log 2>&1 & -u 代表程序不启用缓存,也就是把输出直接放到log中 阅读全文
摘要:
contos 1 修改/etc/my.cnf 文件[mysqld] skip-name-resolve2 重启mysql服务service mysqld restart 阅读全文
摘要:
手机号:/^1(3|4|5|7|8)\d{9}$/ 两位小数(正): /^(([1-9][0-9]*)|(([0]\.\d{1,2}|[1-9][0-9]*\.\d{1,2})))$/ 阅读全文
摘要:
@Select("select * from tb_test as test left join tb_test1 as test1 ${ew.customSqlSegment}") //${ew.customSqlSegment} 吧wrapper条件拼接在sql上 IPage<CompanyTa 阅读全文
摘要:
本文参照:https://blog.csdn.net/qq_43232506/article/details/102816659 • 安装mysql及依赖 dnf install @mysql • 启动mysql服务并使它在启动时自动启动 sudo systemctl enable --now my 阅读全文
摘要:
• application.yml server: port: 8082 spring: application: name: upload servlet: multipart: max-file-size: 5MB • uploadController.java import org.apach 阅读全文
摘要:
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.cors.C 阅读全文