/** * 计算barcode最后一位 * @param code 12位的barcode * @return */ public static String padBarcode(String code){ if( null == code || code.length() != 12 ){ th ...
分类:
其他好文 时间:
2021-06-02 18:53:48
阅读次数:
0
1、nginx日志字段解析 包含的变量注释如下: $remote_addr, $http_x_forwarded_for 记录客户端IP地址 $remote_user 记录客户端用户名称 $request 记录请求的URL和HTTP协议 $status 记录请求状态 $body_bytes_sent ...
分类:
其他好文 时间:
2021-06-02 18:47:12
阅读次数:
0
一、基本概念dva 首先是一个基于 redux 和 redux-saga 的数据流方案,然后为了简化开发体验,还额外内置了 react-router 和 fetch,所以也可以理解为一个轻量级的应用框架。 易学易用,仅有 6 个 api,对 redux 用户尤其友好,配合 umi 使用后更是降低为 ...
分类:
其他好文 时间:
2021-06-02 18:42:29
阅读次数:
0
数据库查询操作,一般使用生sql和模型对象,两种方式! 模型操作使用一般不会有太大的问题, 但是使用原生sql(pymysql)时有可能会遇到数据库查询周期性或者连续性失败的情况: import pymysql from allinone.settings import BASE_DIR class ...
分类:
数据库 时间:
2021-06-02 18:29:25
阅读次数:
0
夜神模拟器:adb connect 127.0.0.1:62001逍遥安卓模拟器: adb connect 127.0.0.1:21503天天模拟器:adb connect 127.0.0.1:6555海马玩模拟器 :adb connect 127.0.0.1:53001网易MUMU模拟器:adb ...
分类:
其他好文 时间:
2021-06-02 18:22:02
阅读次数:
0
Redis的连接 // 实例化redis类 $redis = new \Redis(); // 参数1:host,参数2:port $redis->connect('127.0.0.1', 6379); // 如果有密码的话,则: $redis->auth('密码'); // 测试redis是否连接 ...
分类:
Web程序 时间:
2021-06-02 18:17:28
阅读次数:
0
1.安装启动检查Mysql服务。netstat -tunlp (3306) 2.spark 连接mysql驱动程序。–cp /usr/local/hive/lib/mysql-connector-java-5.1.40-bin.jar /usr/local/spark/jars 3.启动 Mysql ...
分类:
数据库 时间:
2021-06-02 18:04:49
阅读次数:
0
错误: Repository epel is listed more than once in the configurationbintray-rabbitmq-rpm 5.6 B/s | 10 B 00:01 Errors during downloading metadata for repo ...
分类:
其他好文 时间:
2021-06-02 14:01:53
阅读次数:
0
授权语法sql 一.用户的创建与使用 在管理员登录后可创建用户 --创建qfplan用户-create user qfplan identified by qfplan; --用户基本权限授权grant create session, connect ,resource to qfplan; --给 ...
分类:
其他好文 时间:
2021-06-02 11:00:18
阅读次数:
0
往常使用options.Find().SetSort(bson.D{{"a", -1},{"b", -1}})结果报错,感觉使用方法没问题,排查之后发现是import的包错了导致。 cannot transform type bson.D to a BSON Document: WriteArray ...
分类:
数据库 时间:
2021-05-25 18:10:59
阅读次数:
0