The USB-Link 2, the next generation vehicle interface from NEXIQ Technologies, has arrived. Dependable and rugged at Autonumen.com, the new USB-Link 2 ...
分类:
其他好文 时间:
2021-03-18 14:37:53
阅读次数:
0
Dual-write overview Effective November 2020: Common Data Service has been renamed to Microsoft Dataverse. For more information, see Power Automate Blo ...
分类:
其他好文 时间:
2021-03-18 14:04:39
阅读次数:
0
原文: 安装:https://www.cnblogs.com/likeju/p/4687212.html 开放端口:https://jingyan.baidu.com/article/c14654138d519c0bfcfc4cc4.html 1 ...
分类:
其他好文 时间:
2021-03-18 14:00:56
阅读次数:
0
public void fun() { String name="who"; String passwd="666"; log.info("name:{},passwd,{}",name,passwd); } ...
分类:
其他好文 时间:
2021-03-17 15:04:20
阅读次数:
0
call和apply的应用场景: 判断数据类型: Object.prototype.toString用来判断类型再合适不过,借用它我们几乎可以判断所有类型的数据: function isType(data, type) { const typeObj = { '[object String]': ' ...
分类:
移动开发 时间:
2021-03-17 14:28:08
阅读次数:
0
针对Android 7.0及以上版本的系统,不信任用户添加的证书,无法抓HTTPS包问题的解决方法。 1、无需root,使用XPosed框架+JustTrustMe :https://www.cnblogs.com/xiaochao-testing/p/13985602.html 2、在APK包可以 ...
分类:
移动开发 时间:
2021-03-17 14:27:54
阅读次数:
0
开启mysql缓存后,数据没有更新的情况下,相同的查询sql会使用缓存数据返回结果。在数据更新较少,类似查询较多的情况下,使用mysql缓存可以显著提升查询效率。 mysql查询缓存参数设置 (1) have_query_cache表示是否支持查询缓存,YES表示支持 (2) query_cache ...
分类:
数据库 时间:
2021-03-17 14:15:55
阅读次数:
0
idea 安装目录 的idea.exe.vmoptions 改了,没起作用,idea64.exe.vmoptions 也改了,也没起作用。 idea的编码格式也设置了,没起作用 最后起作用的是: 先打开tomcat的安装目录 编辑 conf 目录下的 logging.properties 用note ...
分类:
其他好文 时间:
2021-03-17 14:02:51
阅读次数:
0
慢日志slow-log的作用 记录运行较慢的语句,优化过程中常用的工具日志 默认未开启慢日志,需要修改配置文件my.cnf开启 $ vim /etc/my.cnf [mysqld] #开启慢日志 slow_query_log=1 #慢日志记录文件位置,目录提前创建好且有权限 slow_query_l ...
分类:
其他好文 时间:
2021-03-17 14:02:38
阅读次数:
0
Js 对象之间的继承 构造函数的属性继承 ①对象拷贝 :使用for....in循环继承父对象属性 <script> var student1 = { name : "lisi", id : 1213, meaasge : function(){ console.log(name + "," + id ...
分类:
Web程序 时间:
2021-03-16 14:01:27
阅读次数:
0