摘要:
<dependency> <groupId>cn.keking</groupId> <artifactId>spring-boot-klock-starter</artifactId> <version>1.5-RELEASE</version> </dependency> yml配置文件上,设置r 阅读全文
摘要:
需要在class 样式 添加 fill: currentColor; 例子如下 阅读全文
摘要:
1.原因 springboot 框架不支持LocalDateTime的解析,需要自己添加一个解析配置 2.解决 创建一个配置类,位置随意 import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer; imp 阅读全文
摘要:
1.原因 crontab 缺少执行配置文件 2.解决 添加 source /etc/profile source ~/.bash_profile 具体例子如下 #!/bin/sh source /etc/profile source ~/.bash_profile 下面写自己的代码 阅读全文
摘要:
1.fiddler部分 tools》options 中, 这几个配置勾选跟我的一致,端口使用8888 然后导出证书 会导出到桌面 然后pc授信证书 然后重启fiddler 2.模拟器部分 将证书拉入模拟器,然后点击证书安装,输入的名称可以随便写 然后打开wlan,对wifi的修改代理为手动 【模拟器 阅读全文
摘要:
当 nodejs 升级到17+版本以后,开始支持 OpenSSL 3.0,而 OpenSSL 3.0 对各种摘要算法做了更严格的限制,因此才报错 如果不想换到17版本以下,可以在启动指令中添加配置 set NODE_OPTIONS openssl-legacy-provider 具体如下 阅读全文
摘要:
netstat -aon|findstr "端口号" taskkill /F /PID 进程号 例子 netstat -aon|findstr "8080" taskkill /F /PID 13008 阅读全文
摘要:
List<String> lVal = JSONUtil.toList(JSONUtil.parseArray(JSONUtil.toJsonStr(obj)), String.class); 阅读全文
摘要:
pyinstaller --add-data "cxmodel;cxmodel/." --add-data "./cenxi_py.flag;." -F cenxi.py --onefile --noconsole --additional-hooks-dir=. cenxi.py 就是启动主文件 阅读全文
摘要:
执行指令 yarn config set ignore-engines true 阅读全文