欢迎访问『www.cnblogs.com/blog-ice』
  2022年4月12日
摘要: 修改“对方微信名称”, 将下列代码保存到txt, 重命名为xx.vbs, 打开微信,打开和对方的聊天窗口 复制想要发送的文本 点击xx.vbs Set WshShell = WScript.CreateObject("WScript.Shell") WshShell.AppActivate "对方微 阅读全文
posted @ 2022-04-12 15:07 仙路尽头谁为峰 阅读(100) 评论(0) 推荐(0) 编辑
  2022年4月6日
摘要: public String handle(Function<Consumer<Object>, WebPortalMessageWrapper> processor, Consumer<Object> emailSendHandler) { CompletableFuture<String> fut 阅读全文
posted @ 2022-04-06 09:30 仙路尽头谁为峰 阅读(31) 评论(0) 推荐(0) 编辑
  2022年3月3日
摘要: 定时任务丢失问题时由于任务调度默认时一个线程执行scheduled-1 1.到点就执行,不管上次有没有执行完成 @EnableAsync @Bean("threadPool") public Executor threadPool() { return Executors.newScheduledT 阅读全文
posted @ 2022-03-03 15:10 仙路尽头谁为峰 阅读(486) 评论(0) 推荐(0) 编辑
摘要: 1.查看分支 git branch git branch -a 查看远程分支 2.查看本地分支的upstream git branch -vv 3.创建本地分支 git switch master git pull git checkout -b dev git checkout -b 本地分支名称 阅读全文
posted @ 2022-03-03 13:15 仙路尽头谁为峰 阅读(197) 评论(0) 推荐(0) 编辑
  2022年2月17日
摘要: 注意:绿色标注的163邮箱必须一致 1.依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> 2.配置 s 阅读全文
posted @ 2022-02-17 09:03 仙路尽头谁为峰 阅读(44) 评论(0) 推荐(0) 编辑
  2022年2月16日
摘要: 1.增加依赖 <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.sprin 阅读全文
posted @ 2022-02-16 09:09 仙路尽头谁为峰 阅读(141) 评论(0) 推荐(0) 编辑
  2022年2月15日
摘要: 官网下载arthas-boot.jar 定位系统瓶颈 java -jar arthas-boot.jar trace com.xxx.类名 方法 -n 100 阅读全文
posted @ 2022-02-15 14:34 仙路尽头谁为峰 阅读(76) 评论(0) 推荐(0) 编辑
  2022年2月11日
摘要: Demo见spring security 官网 spring-projects/spring-security-samples at 5.6.x (github.com) 登录服务器 localhost:8080 认证服务器 localhost:9000 ###################### 阅读全文
posted @ 2022-02-11 14:54 仙路尽头谁为峰 阅读(1447) 评论(0) 推荐(0) 编辑
  2022年2月9日
摘要: 浏览器Microsoft Edge 下载 Modify Header 插件 修改Header Authorization的值为Basic {登录用户名} 发送任意请求 发送请求后,返回Header WWW-Authenticate 重新登录 阅读全文
posted @ 2022-02-09 09:28 仙路尽头谁为峰 阅读(59) 评论(0) 推荐(0) 编辑
  2022年1月28日
摘要: 1.依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-batch</artifactId> </dependency> <dependency> <groupId>o 阅读全文
posted @ 2022-01-28 16:25 仙路尽头谁为峰 阅读(379) 评论(0) 推荐(0) 编辑
这里是自由发挥的天堂