摘要:
修改“对方微信名称”, 将下列代码保存到txt, 重命名为xx.vbs, 打开微信,打开和对方的聊天窗口 复制想要发送的文本 点击xx.vbs Set WshShell = WScript.CreateObject("WScript.Shell") WshShell.AppActivate "对方微 阅读全文
摘要:
public String handle(Function<Consumer<Object>, WebPortalMessageWrapper> processor, Consumer<Object> emailSendHandler) { CompletableFuture<String> fut 阅读全文
摘要:
定时任务丢失问题时由于任务调度默认时一个线程执行scheduled-1 1.到点就执行,不管上次有没有执行完成 @EnableAsync @Bean("threadPool") public Executor threadPool() { return Executors.newScheduledT 阅读全文
摘要:
1.查看分支 git branch git branch -a 查看远程分支 2.查看本地分支的upstream git branch -vv 3.创建本地分支 git switch master git pull git checkout -b dev git checkout -b 本地分支名称 阅读全文
摘要:
注意:绿色标注的163邮箱必须一致 1.依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> 2.配置 s 阅读全文
摘要:
1.增加依赖 <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.sprin 阅读全文
摘要:
官网下载arthas-boot.jar 定位系统瓶颈 java -jar arthas-boot.jar trace com.xxx.类名 方法 -n 100 阅读全文
摘要:
Demo见spring security 官网 spring-projects/spring-security-samples at 5.6.x (github.com) 登录服务器 localhost:8080 认证服务器 localhost:9000 ###################### 阅读全文
摘要:
浏览器Microsoft Edge 下载 Modify Header 插件 修改Header Authorization的值为Basic {登录用户名} 发送任意请求 发送请求后,返回Header WWW-Authenticate 重新登录 阅读全文
摘要:
1.依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-batch</artifactId> </dependency> <dependency> <groupId>o 阅读全文