摘要: 1、泛型: https://www.cnblogs.com/jpfss/p/9928747.html 2、RestTemplate: https://www.cnblogs.com/f-anything/p/10084215.html https://www.jianshu.com/p/90ec27 阅读全文
posted @ 2021-12-11 20:39 Layee 阅读(23) 评论(0) 推荐(0)
摘要: 错误提示: Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client 报错原因:mys 阅读全文
posted @ 2020-03-23 17:24 Layee 阅读(619) 评论(0) 推荐(0)
摘要: 1、安装 下载地址:https://www.mongodb.com/download-center/community 根据操作系统选择版本,下载好之后按照步骤安装。 注意:安装过程中出现service MongoDB failed to start,verify that you have suf 阅读全文
posted @ 2020-03-21 18:02 Layee 阅读(421) 评论(0) 推荐(0)
摘要: 1、安装 在创建完vue-cli项目后,通过npm安装到项目中。 npm install mockjs --save 2、在项目中创建Mock模块 在src目录下创建mock文件夹,并在mock文件夹中创建user.js和index.js。 user.js:用于生成模拟数据,例如(数据随便写的,没用 阅读全文
posted @ 2020-03-20 15:01 Layee 阅读(2989) 评论(0) 推荐(0)
摘要: 1、python中的数据类型?不可变数据类型?可变数据类型? 2、Python中,打开文件语法? 3、endswith()? 4、下列代码输出结果? import copy a = [1, 2, 3, 4, ['a', 'b']] b = a c = copy.copy(a) d = copy.de 阅读全文
posted @ 2020-01-08 21:23 Layee 阅读(205) 评论(0) 推荐(0)
摘要: 记录一下常用的ADB命令,然后写app性能自动化脚本。 adb devices: 查看当前连接的设备 adb shell pm list packages:显示手机应用里所有的包名 adb shell dumpsys activity | findstr "mFocusedActivity":查看顶 阅读全文
posted @ 2019-12-28 23:38 Layee 阅读(253) 评论(0) 推荐(0)
摘要: 1、Python列表脚本操作符 2、Python列表截取 切片的公式:[start : end : step] 1)切片的取值: list1 = [1, 4, 9, 16, 25] print(list1[:]) #输出所有 print(list1[1:]) #输出包括索引1在内的后边所有项[4, 阅读全文
posted @ 2019-12-28 12:48 Layee 阅读(554) 评论(0) 推荐(0)
摘要: 1.回到 Jenkins 首页,点击 “构建执行状态”或“Build Executor Status” ,右则会列出本机信息。 完美解决!!! 阅读全文
posted @ 2019-12-28 00:17 Layee 阅读(232) 评论(0) 推荐(0)
摘要: 1、PM2介绍 PM2是一个线上环境下,用于启动nodejs进程守护的工具,用来保证服务的稳定及分摊服务器进程和压力。 2、下载安装 npm install pm2 -g => pm2 --version => 在package.json scripts中配置 "prd": "cross-env N 阅读全文
posted @ 2019-12-27 12:11 Layee 阅读(851) 评论(0) 推荐(0)
摘要: 本文主要介绍express中间件的原理,来应对面试。 1、安装express及初始化: npm install express-generator -g => express express-test => npm install & npm start => 在bin文件夹中的www.js文件中可 阅读全文
posted @ 2019-12-26 12:55 Layee 阅读(637) 评论(0) 推荐(0)