创建ContentNegotiationStrategy组件源码,参考:org.springframework.web.accept.ContentNegotiationManagerFactoryBean#afterPropertiesSet Spring-web源码解析之ContentNegot ...
分类:
编程语言 时间:
2020-01-10 12:25:50
阅读次数:
77
HTTP协议中的Accept与Content-Type的区别 2018.06.07 22:53 19110浏览 2018.06.07 22:53 19110浏览 2018.06.07 22:53 19110浏览 在开发REST服务时,不可避免的需要了解HTTP协议的内容,其中,我们经常会用到 Acc ...
分类:
Web程序 时间:
2020-01-10 12:19:19
阅读次数:
74
默认校检规则 (1)、required:true 必输字段 (2)、remote:"remote-valid.jsp" 使用ajax方法调用remote-valid.jsp验证输入值 (3)、email:true 必须输入正确格式的电子邮件 (4)、url:true 必须输入正确格式的网址 (5)、 ...
分类:
Web程序 时间:
2020-01-09 10:27:30
阅读次数:
303
多进程并发服务器的流程 1. socket; 创建监听套接字 2. bind; 绑定地址结构 3. listen(); 设置监听上限 4. accept();进行循环监听 5. fork();接收到客户端请求创建新的进程 6. close(); 与客户端通讯的套接字关闭 实现C语言并发服务器 ...
分类:
编程语言 时间:
2020-01-06 09:33:15
阅读次数:
94
在本文中例子中遇到问题的各种开发版本如下: Python3.6.8 Django==2.2 celery==4.4.0 kombu==4.6.7 redis==3.3.0 大概的报错如下截图: 是在开发使用celery+redis+django的场景中遇到的错误 kombu.exceptions.E ...
分类:
Web程序 时间:
2020-01-05 20:31:40
阅读次数:
202
~~~ 官网:https://kubernetes.io/docs/setup/production environment/tools/kubeadm/install kubeadm/ installing kubeadm kubelet and kubectl GitHub:https://gi ...
分类:
其他好文 时间:
2020-01-05 18:41:32
阅读次数:
81
[TOC] "Neal R. M. , MCMC Using Hamiltonian Dynamics[J]. arXiv: Computation, 2011: 139 188." @article{neal2011mcmc, title={MCMC Using Hamiltonian Dynam ...
分类:
其他好文 时间:
2020-01-05 15:40:49
阅读次数:
95
//可以给input绝对定位,覆盖在需要点击事件的标签上面 <input id="pice" type="file" multiple="" accept="image/*" capture="camera"> $("# pice ").change(function () { // 构造一个文件渲 ...
分类:
Web程序 时间:
2020-01-04 18:17:23
阅读次数:
124
<input id="file" type="file" capture="microphone" accept="image/*"> 1 $("#file").change(function(){ 2 var m_this = this; 3 cutImageBase64(m_this,null, ...
分类:
其他好文 时间:
2020-01-04 16:48:47
阅读次数:
1012