tomcat加固安全配置 1.禁止目录浏览 在web.xml中进行如下配置: <param-name>listings</param-name> <param-value>false</param-value> 2.开启tomcat日志记录,默认是开启的。 server.xml中配置: <Valve ...
分类:
其他好文 时间:
2021-02-22 11:44:32
阅读次数:
0
盘点typeScript中的变量数据类型: 1.布尔类型 var isShowComma:boolean=true; 2.字符串类型 var name:string="小舞"; 3.数值类型 var num:number=12345; 4.数组类型 写法一: var arr:number[]=[1, ...
分类:
其他好文 时间:
2021-02-20 12:45:51
阅读次数:
0
[root@op-benchmark-216 ~]# cat /etc/dhcp/dhcpd.conf # dhcpd.conf # # Sample configuration file for ISC dhcpd # # option definitions common to all supp ...
分类:
其他好文 时间:
2021-02-20 12:34:38
阅读次数:
0
题目:https://atcoder.jp/contests/code-festival-2017-qualb/tasks/code_festival_2017_qualb_d 题意:给一个 01 串,每次可以把 101 换成 010,问最多能换多少次 . 题解: 令 \(dp_i\) 表示 \(1 ...
分类:
其他好文 时间:
2021-02-20 12:18:51
阅读次数:
0
//出发器 ALTER trigger [dbo].[trsx] on [dbo].[T1] for insert as BEGIN DECLARE @URL VARCHAR(1000) set @URL='http://192.168.1.xx/api/blade-meal/meal/menu/g ...
分类:
数据库 时间:
2021-02-20 12:17:00
阅读次数:
0
995. Minimum Number of K Consecutive Bit Flips In an array A containing only 0s and 1s, a K-bit flip consists of choosing a (contiguous) subarray of l ...
分类:
其他好文 时间:
2021-02-20 12:13:50
阅读次数:
0
一、keepalived的作用 1、短连接:客户端连接上服务端,然后结束请求后,由客户端或者服务端进行http连接的关闭。下次再发送请求的时候,客户端再发起一个连接,传送数据,关闭连接。 2、长连接:客户端发送connection:keep-alive头给服务端,且服务端也接受这个keep-aliv ...
分类:
Web程序 时间:
2021-02-20 12:12:43
阅读次数:
0
节前在现场需要在一台运行citect V7.4的计算机上通过OPC读取网上邻居其他OPC Server数据时,始终不成功,DCom设置都没问题,物理连接也没有问题。今天在同一台计算机上安装wincc和citect做了测试,数据能够读取了,节后再去现场测试一下,希望顺利。现在把设置记录下来,希望对今后 ...
numpy.stack 函数用于沿新轴连接数组序列,格式如下: numpy.stack(arrays, axis) 参数说明: arrays相同形状的数组序列 axis:返回数组中的轴,输入数组沿着它来堆叠 1 import numpy as np 2 3 a=np.array([[1,2],[3, ...
分类:
其他好文 时间:
2021-02-20 12:05:27
阅读次数:
0
1、修改字段名: alter table 表名 rename column A to B 2、修改字段类型: alter table 表名 alter column 字段名 type not null 3、修改字段默认值 alter table 表名 add default (0) for 字段名 ...
分类:
数据库 时间:
2021-02-20 11:58:41
阅读次数:
0