下面开始列举 #include <stdio.h> #include <stdlib.h> int main(int argc, char* argv[]) { ////输入输出 printf("Hello world!"); printf("\r\n"); printf("Number = %d" ...
分类:
其他好文 时间:
2020-07-10 17:07:05
阅读次数:
77
1 /** 2 * @author jliu.l 3 * @2020年7月10日 4 * 5 */ 6 public class Demo01Runnable { 7 8 public static void startThread(Runnable run) { 9 new Thread(run) ...
分类:
其他好文 时间:
2020-07-10 16:59:48
阅读次数:
62
1 /** 2 * @author jliu.l 3 * @2020年7月7日 4 * 5 */ 6 public class Calendar { 7 8 public static void main(String[] args) { 9 System.out.println(" 万年历 "); ...
分类:
其他好文 时间:
2020-07-10 16:49:45
阅读次数:
145
rsync未授权访问漏洞简介 rsync是Linux/Unix下的一个远程数据同步工具,可通过LAN/WAN快速同步多台主机间的文件和目录,默认运行在873端口。由于配置不当,导致任何人可未授权访问rsync,上传本地文件,下载服务器文件。 rsync未授权访问带来的危害主要有两个:一是造成了严重的 ...
分类:
其他好文 时间:
2020-07-10 15:13:22
阅读次数:
292
case具有两种格式。简单case函数和case搜索函数。 1、简单case函数: case sex when '1' then '男' when '2' then '女' else '其他' end 2、case搜索函数: case when sex = '1' then '男' when sex ...
分类:
数据库 时间:
2020-07-10 11:39:12
阅读次数:
59
# mongod.conf # for documentation of all options, see: # http://docs.mongodb.org/manual/reference/configuration-options/ # where to write logging data ...
分类:
数据库 时间:
2020-07-09 12:25:50
阅读次数:
128
[Input Text readOnly 属性 Input Text 对象实例设置文本域只读:document.getElementById("myText").readOnly = true;定义和用法readOnly 属性设置或返回文本域是否为只读。只读字段是不能修改的。不过,用户仍然可以使用 ... ...
分类:
Web程序 时间:
2020-07-09 12:15:35
阅读次数:
108
[JavaScript 中文开发手册date.setUTCDate (Date) - JavaScript 中文开发手册setUTCDate()方法就是根据全球时间设置特定date对象的日期。] 本文标题:date.setUTCDate (Date) – JavaScript 中文开发手册 - Br... ...
分类:
编程语言 时间:
2020-07-09 11:59:18
阅读次数:
73
@EnableWebSecurity public class seccurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Ex ...
分类:
编程语言 时间:
2020-07-08 20:07:45
阅读次数:
48
1、先修改Elasticsearch配置文件,增加如下配置 http.cors.allow-origin: "*" http.cors.enabled: true http.cors.allow-headers : X-Requested-With,X-Auth-Token,Content-Type ...
分类:
其他好文 时间:
2020-07-08 13:15:05
阅读次数:
119