APR包 链接:https://pan.baidu.com/s/1lEP2YlqP7cJDG0ofRwRyog 提取码:nng4 一、三种运行模式介绍 Tomcat 有三种(bio,nio.apr) 运行模式,首先来简单介绍下 bio bio(blocking I/O),顾名思义,即阻塞式I/O操作 ...
分类:
其他好文 时间:
2020-07-21 14:02:42
阅读次数:
82
Chrome+IE默认支持粘贴剪切板中的图片,但是我要发布的文章存在word里面,图片多达数十张,我总不能一张一张复制吧?Chrome高版本提供了可以将单张图片转换在BASE64字符串的功能。但是无法处理多张图片。而且转换成BASE64后是作为内容一起提交给服务器,不能够将图片单独保存在另外一台服务 ...
分类:
其他好文 时间:
2020-07-21 13:48:07
阅读次数:
182
update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1 update-alternatives --install /usr/bin/python python /usr/bin/python3.4 2 up ...
分类:
编程语言 时间:
2020-07-21 13:46:26
阅读次数:
55
ReactJs as a JavaScript library created by Facebook that lets us build dynamic user interfaces. What this dynamic user interface even means is that we ...
分类:
Web程序 时间:
2020-07-21 09:48:32
阅读次数:
76
import React,{Component } from 'react' import './App.css'; class App extends Component{ scrollToBottom() { if (this.messagesEnd) { const scrollHeight ...
分类:
其他好文 时间:
2020-07-20 22:56:47
阅读次数:
162
直接贴代码: import React, { useState, useEffect, forwardRef } from 'react'; import { Upload, Icon, Modal, message } from 'antd'; import config from '@/conf ...
分类:
其他好文 时间:
2020-07-20 22:35:15
阅读次数:
141
修改list类型的state 方式一: 通过list的concat方法,如下 let newList = this.state.selectedApiDetailList.concat(response.data) this.setState({selectedApiDetailList: newL ...
分类:
其他好文 时间:
2020-07-20 13:20:45
阅读次数:
114
项目地址:https://github.com/hnlyf168/DotNet.Framework 昨天晚上大致测试了下 ,490个客户端(一个收一个发) 平均估计每个每秒60个包 使用mqtt协议 发送一个guid的字符串 服务器转发每秒大约1.2-1.3w cpu 占用:25% 一下内存好像都在 ...
分类:
其他好文 时间:
2020-07-20 10:39:20
阅读次数:
67
这三个属性非常强大,vue,react等一些框架的内部结构,使用他们改变this的指向。 我先说这三个属性的区别,在用代码详细解释。 call:改变this指向,函数执行 , 参数写在参数写在第二位开始的参数部分,this指向第一个参数 apply:改变this指向,函数执行,参数写在第二位的数组中 ...
分类:
移动开发 时间:
2020-07-19 23:21:04
阅读次数:
79
其实咱们都知道,开发很简单,数据对接也不难,难的是标准的兼容。比如咱们是C#写的代码,对方是Java写的或者是PHP写的代码,这个时候通用的倒是无所谓,但是部分写法是某种语言专用的,因此可能兼容起来就非常的困难。比如对方给了个标准RSA加密,pkcs8,那么我们就得去深入研究了,今天我们讨论的不是R ...
分类:
编程语言 时间:
2020-07-19 18:08:14
阅读次数:
120