会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
全琪俊
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
13
14
15
16
17
18
19
20
21
···
32
下一页
2023年7月18日
好用的idea插件
摘要: SuperHotSwap 插件名称叫做:SuperHotSwap(超级热更新) 9.RestfulToolkit-fix 接口路径查询插件假如在controller层写了RequestMapping路径,在方法上写了请求路径,使用这个插件时可以将两个路径拼接查询,他会自动拼接路径并进行查询本路径的方
阅读全文
posted @ 2023-07-18 13:11 全琪俊
阅读(959)
评论(0)
推荐(0)
2023年7月10日
hutool md5 aes 加密解密
摘要: // AES 加密解密AES aes = new AES(Mode.CBC, Padding.ZeroPadding, "xxx".getBytes(), "xxx".getBytes()); // 加密并进行Base转码String encrypt = aes.encryptBase64(cont
阅读全文
posted @ 2023-07-10 18:25 全琪俊
阅读(1454)
评论(0)
推荐(0)
2023年7月7日
nginx配置头 防止xss攻击
摘要: 新增 server { listen 80 ssl; server_name xxx.com; ssl_certificate cert/xxx_bundle.pem; ssl_certificate_key certxxx.key; ssl_session_cache shared:SSL:10m
阅读全文
posted @ 2023-07-07 21:47 全琪俊
阅读(647)
评论(0)
推荐(0)
2023年6月30日
.sh 定时启动脚本 启动jar文件
摘要: 进入.sh文件目录下,执行sh命令 #检查脚本是否有问题 sh -x start.sh 启动命令:sh start.sh start停止命令:sh start.sh stop查看状态命令:sh start.sh status重启命令:sh start.sh restart 常见错误: 1、$‘ \r
阅读全文
posted @ 2023-06-30 14:39 全琪俊
阅读(1215)
评论(0)
推荐(0)
java项目启动内存配置或启动日志,杀死进程
摘要: nohup java -Xloggc:./wse-gc-%t.log -Xms512M -Xmx1024M -jar zdhyw20230410.jar > nohup.out 2>&1 & nohup java -jar -Xms512M -Xmx1024M zdhyw20230410.jar >
阅读全文
posted @ 2023-06-30 10:56 全琪俊
阅读(260)
评论(0)
推荐(0)
2023年6月27日
ECS(Linux)连接RDS,使用命令行方式连接实例
摘要: 要先安装mysql才行 使用命令行方式连接实例通过命令行连接RDS MySQL数据库,连接方式如下: mysql -h<连接地址> -P<端口> -u<用户名> -p -D<数据库名称># 假设 用户=testuser 密码=123 数据库连接为 rm-bp1457xxxxxx.mysql.rds.
阅读全文
posted @ 2023-06-27 17:51 全琪俊
阅读(98)
评论(0)
推荐(0)
2023年6月25日
根据上传的excel文件url,进行文件查询
摘要: HttpResponse response = HttpUtil.createGet(fileUrl) .setConnectionTimeout(20000) .setReadTimeout(120000) .timeout(3600000) .execute();InputStream inpu
阅读全文
posted @ 2023-06-25 17:02 全琪俊
阅读(79)
评论(0)
推荐(0)
2023年6月12日
从Oracle迁移到MySQL方案汇总(转载)
摘要: 转载自https://zhuanlan.zhihu.com/p/94254106 当企业内部使用的数据库种类繁杂时,或者有需求更换数据库种类时,都可能会做很多数据迁移的工作。有些迁移很简单,有些迁移可能就会很复杂,大家有没有考虑过为了顺利完成复杂的数据库迁移任务,都需要考虑并解决哪些问题呢? 在以前
阅读全文
posted @ 2023-06-12 11:12 全琪俊
阅读(2705)
评论(0)
推荐(0)
2023年6月5日
java 自己写分页
摘要: long current =1;long size =100;String currentOther = jsonObject.getStr("current");if(StrUtil.isNotBlank(currentOther)){ //?:0或1个, *:0或多个, +:1或多个 Boole
阅读全文
posted @ 2023-06-05 11:10 全琪俊
阅读(65)
评论(0)
推荐(0)
2023年6月2日
获取节假日后的工作日
摘要: 参考 https://blog.csdn.net/IronMan1017/article/details/125196394 https://blog.csdn.net/P_L_Wen97/article/details/123897938 https://blog.csdn.net/hanxiao
阅读全文
posted @ 2023-06-02 15:25 全琪俊
阅读(20)
评论(0)
推荐(0)
上一页
1
···
13
14
15
16
17
18
19
20
21
···
32
下一页
公告