1.什么是Socket 套接字(socket)是一个抽象层,应用程序可以通过它发送或接收数据,可对其进行像对文件一样的打开、读写和关闭等操作。套接字允许应用程序将I/O插入到网络中,并与网络中的其他应用程序进行通信。网络套接字是IP地址与端口的组合。 Socket起源于Unix,而Unix/Linu ...
分类:
编程语言 时间:
2019-12-11 21:19:00
阅读次数:
106
初学者在maven spring boot web项目中使用thymeleaf 模板,经常会遇到 “template might not exist or might not be accessible by any of the configured Template Resolvers”这个问题 ...
分类:
数据库 时间:
2019-12-11 17:30:25
阅读次数:
1401
NFS是基于UDP/IP协议的应用,其实现主要是采用远程过程调用RPC机制,RPC提供了一组与机器、操作系统以及低层传送协议无关的存取远程文件的操作。RPC采用了XDR的支持。XDR是一种与机器无关的数据描述编码的协议,他以独立与任意机器体系结构的格式对网上传送的数据进行编码和解码,支持在异构系统之 ...
分类:
系统相关 时间:
2019-12-10 13:04:06
阅读次数:
102
今天遇到使用Feign调用微服务,传递参数时遇到几个问题 1.RequestParam.value() was empty on parameter 0 解决方法: 加上注解的描述,修改为 如果是@RequestBody不需要注解的描述 2.Feign多参数的问题 遇到报错Method has to ...
分类:
编程语言 时间:
2019-12-10 00:45:18
阅读次数:
189
对某一视频共享网站电影名进行爬取 1 # Author:Winter Liu 2 import time 3 import urllib.request 4 import re 5 6 start_time = time.time() 7 html_start = 'https://yanghuan ...
分类:
其他好文 时间:
2019-12-09 19:44:10
阅读次数:
129
<! flowchart 箭头图标 勿删 Editing Ctrl + Space Basic code completion (the name of any class, method or variable) Ctrl + Shift + Space Smart code completion ...
分类:
其他好文 时间:
2019-12-09 01:05:12
阅读次数:
462
主要的结构目录: 创建Role.java package cn.itcast.domain; import javax.persistence.*; import java.util.HashSet; import java.util.Set; @Entity @Table(name = "sys_ ...
分类:
编程语言 时间:
2019-12-08 23:34:11
阅读次数:
99
Adding display: flex to an element turns it into a flex container. This makes it possible to align any children of that element into rows or columns. ...
分类:
Web程序 时间:
2019-12-08 22:45:24
阅读次数:
114
Given any string of N (≥) characters, you are asked to form the characters into the shape of U. For example, helloworld can be printed as: h d e l l r ...
分类:
其他好文 时间:
2019-12-08 17:52:11
阅读次数:
153
题目链接:http://codeforces.com/problemset/problem/602/E E. Kleofá? and the n-thlon time limit per test 1 second memory limit per test 256 megabytes input ...
分类:
其他好文 时间:
2019-12-08 17:14:20
阅读次数:
103