log4j2是一种日志框架实现,本文介绍了xml格式的log4j2配置文件的基本配置。 ...
分类:
其他好文 时间:
2021-03-29 12:36:12
阅读次数:
0
node和python默认的rsa加密方式是不一样,要调整一下。 node代码: const fs = require('fs'); const NodeRSA = require('node-rsa'); const path = require('path').resolve(); const ...
分类:
编程语言 时间:
2021-03-29 11:41:58
阅读次数:
0
当Promise 被 reject 且没有 reject 处理器的时候,会触发 unhandledrejection 事件; // 未处理 rejection new Promise((resolve, reject) => { setTimeout(() => reject('woops'), 5 ...
分类:
其他好文 时间:
2021-03-18 14:44:10
阅读次数:
0
File "/usr/bin/yum-config-manager", line 135 except yum.Errors.RepoError, e: ^SyntaxError: invalid syntax vim /usr/bin/yum-config-manager #!/usr/bin/p ...
分类:
其他好文 时间:
2021-03-18 14:10:14
阅读次数:
0
一、配置 首先修改配置文件 #vi /usr/local/nginx/conf/nginx.conf 在最后一个结束符号}前加一行配置: include vhost/*.conf; 意思就是/usr/local/nginx/conf/host下面的所有以.conf结尾的文件都会被加载 #mkdir ...
分类:
其他好文 时间:
2021-03-10 13:39:10
阅读次数:
0
http://www.pipioj.online/problem.php?id=1026 1 #define IO std::ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); 2 #define bug(x) cout<<#x<<" is "<<x<<e ...
分类:
其他好文 时间:
2021-03-10 13:26:07
阅读次数:
0
为什么要说 HashMap 与 LinkedHashMap?第一:这两种数据结构是 Java Coder 中经常使用的数据结构、第二:这两种结构是最合适的能说明链表与数组的结构关系。在开始之前首先必须清楚一个概念,什么是 hash 值?hash 值是指将一个二进制的值通过 hash 算法将其转换成一 ...
分类:
其他好文 时间:
2021-03-09 13:31:00
阅读次数:
0
之前我们有在并发系列中提到 ThreadLocal 类和基本使用方法,那我们就来看下 ThreadLocal 究竟是如何使用的! ThreadLocal 简介 概念 ThreadLocal 类是用来提供线程内部的局部变量。这种变量在多线程环境下访问(get 和 set 方法访问)时能保证各个线程的变 ...
分类:
编程语言 时间:
2021-03-09 13:03:29
阅读次数:
0
async getHomes(item) { let temp = await http.getHome(); let type = []; this.content.push(type); this.show = type; for (var i = 0; i < temp.length; i++ ...
分类:
其他好文 时间:
2021-03-08 13:34:55
阅读次数:
0
.net core 和.net framework上传文件有很多需要注意的地方 .net framework 上传文件用httppostedfilebase .net core 上传文件用 IFormFile 一、首先需要配置在startup 中的Configure方法内新增以下代码 app.Use ...
分类:
Web程序 时间:
2021-03-06 14:14:25
阅读次数:
0