一、头信息解读 1、HTTP通用头 2、HTTP请求头 3、HTTP响应头 4、HTTP实体头 下面具体解读一下 二、通用首部(通用头) 1、Cache-Control 缓存控制 1.1缓存请求指令 1.2缓存响应指令 1.3是否能缓存的指令 #① public指令 Cache-Control:pu ...
分类:
Web程序 时间:
2019-08-31 12:44:23
阅读次数:
117
Java代码 @Path("/file") public class FileService { private static final String FILE_PATH = "c:\\file.log"; @GET @Path("/get") @Produces("text/plain") pu ...
分类:
其他好文 时间:
2019-08-30 23:26:53
阅读次数:
135
通常,变量作为参数进行传递时,不论在方法内进行了什么操作,其原始初始化的值都不会被影响; 例如: public void TestFun1() { int arg = 10; TestFun2(arg); Console.WriteLine(arg); Console.ReadKey(); } pu ...
分类:
其他好文 时间:
2019-08-30 18:47:35
阅读次数:
53
nfs共享的时候,无论怎么检查都报错:mount.nfs: access denied by server while mounting ...
分类:
其他好文 时间:
2019-08-27 23:01:37
阅读次数:
105
centos7设置CPU的运行频率为performance http://www.512873.com/archives/612.html Publish: March 6, 2019 Category: 文档 No Comments centos7设置CPU的运行频率为performance Pu ...
分类:
其他好文 时间:
2019-08-26 19:37:28
阅读次数:
298
1.权限操作涉及的三张表 (1)用户表信息描述users sql语句: 实体类: (2)角色表描述role sql语句: (3)权限资源表描述permission sql语句: (4)权限资源与角色关联关系 权限资源与角色是多对多关系,我们使用role_permission表来描述。 sql语句: ...
分类:
编程语言 时间:
2019-08-23 16:27:12
阅读次数:
114
systemctl start httpd # 将Apache的默认端口改为90后,启动Apache时提示失败 systemctl status httpd # 查看Apache的状态 可以看到提示:Permission denied: AH00072: make_sock: could not b ...
分类:
Web程序 时间:
2019-08-20 22:29:35
阅读次数:
162
1、Error1 Error:“Access denied for user 'root'@'localhost' (using password:YES)” 解决:在mysql安装目录下的"my.ini"文件中,在块“[mysqld]”后添加 “skip-grant-tables”。 "skip- ...
分类:
数据库 时间:
2019-08-19 18:47:59
阅读次数:
76
https://blog.csdn.net/awp0011/article/details/73368481 第一次使用github.com在本地 执行 git clone git@github.com:xxxxx/xxxxx.git 异常信息: Permission denied (publick ...
分类:
其他好文 时间:
2019-08-18 11:52:23
阅读次数:
75