随笔分类 - 技术分享
摘要:需要调用的方法: public interface IMethodService { @OperationType(methodType = Methodtype.CHECK) String check(); @OperationType(methodType = Methodtype.ADD) S
阅读全文
摘要:单个文件上传 @RequestBody与文件类型参数不兼容: org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'multipart/form-data; @PostMapping("/fileUploa
阅读全文
摘要:简介 http1.0: 1.0版本中每个TCP连接只能发送一个请求,数据发送完毕连接就关闭,如果还要请求其他资源,就必须重新建立TCP连接。(TCP为了保证正确性和可靠性需要客户端和服务器三次握手和四次挥手,因此建立连接成本很高) http1.1: 长连接:新增Connection字段,默认为kee
阅读全文