闲鱼单体应用Serverless化拆分实践 原创 柬超 闲鱼技术 今天 ...
分类:
其他好文 时间:
2021-05-24 05:26:12
阅读次数:
0
最近工作上有个要求,要用Entity Framework 对Json类型文件操作,来自动更改配置项,但是之前都是用EF来映射的数据库,还没有对文件做过映射,又重新去读了MSDN的文档才知道,原来也是有相关的资料的; 下面是用法,文档链接在最后; Entity Framework 6 C#引用Nuge ...
分类:
数据库 时间:
2021-05-24 05:25:39
阅读次数:
0
一. 安装: 1. 安装py3,使用Homebrew: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" brew install python3 2. 安装请求库,Pi ...
分类:
编程语言 时间:
2021-05-24 04:50:49
阅读次数:
0
FRAME ##Local Variables 局部变量表也被称之为局部变量数组或本地变量表,定义为一个数字数组,主要用于存储方法参数和定义在方法体内的局部变量,这些数据类型包括各类基本数据类型、对象引用(reference),以及returnAddress类型。局部变量表中的变量只在当前方法调用中 ...
分类:
其他好文 时间:
2021-05-24 04:15:58
阅读次数:
0
前言 当一个接口发送请求有返回结果后,如何知道返回的结果符合预期?可以在 postman 里面的 Tests 写脚本断言符合结果符合预期。 Tests 是接口返回 response 之后的脚本操作,可以使用 JavaScript 为 Postman API 请求编写 Tests 脚本。 Tests编 ...
分类:
其他好文 时间:
2021-05-24 02:30:25
阅读次数:
0
// 全局路由导航拦截 router.beforeEach((to, from, next) ? { // ... if (to.path '/login') { // 如果是登录页面路径,就直接next() next() } else { // 其他页面路径 let token = session ...
分类:
其他好文 时间:
2021-05-24 02:26:50
阅读次数:
0
XML 文件解析 public DataTable XMLParse(string POAddFile) { DataTable addDt = _GetPOAddTable(); FileStream fr = null; try { XmlDocument doc; doc = new XmlD ...
分类:
其他好文 时间:
2021-05-24 00:15:21
阅读次数:
0
RDS Scalabilty Scalabilty allows a solution to grow to increase storage, processing, memory, and netowrk operations By changing the class of an instan ...
分类:
数据库 时间:
2021-05-04 16:10:48
阅读次数:
0
JUC概述 java.util.concurrent 简称juc 线程和进程 进程:一个程序 在操作系统中运行的程序就是进程,比如你的QQ,微信,游戏,ide等等… 一个进程可以包含多个线程,至少包含一个 Java默认有几个线程? 2个, main线程,GC线程(垃圾回收) 线程: 一个进程可以有多 ...
分类:
其他好文 时间:
2021-05-04 16:05:49
阅读次数:
0
代码结构: package com.java.spring; /** * 自定义InitializingBean * 作用:做初始化操作 */ public interface IInitializingBean { void afterPropertiesSet() throws Exceptio ...
分类:
编程语言 时间:
2021-05-03 12:55:47
阅读次数:
0