上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页
摘要: 官网 https://nginx.org/en/download.html 在安装nginx前首先要确认系统中安装了gcc、pcre-devel、zlib-devel、openssl-devel linux 检查是否安装过某软件包 yum -y install gcc pcre-devel zlib 阅读全文
posted @ 2020-12-04 10:09 天天代码码天天 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 原数据 排序后 SELECT c1 FROM test ORDER BY CONVERT ( c1 USING gbk ) 阅读全文
posted @ 2020-12-03 04:39 天天代码码天天 阅读(2) 评论(0) 推荐(0) 编辑
摘要: yum install ntp -y #cn.pool.ntp.org ntp[1-7].aliyun.com ntpdate ntp1.aliyun.com #把当前系统时间写入到CMOS中 clock -w 阅读全文
posted @ 2020-12-02 09:18 天天代码码天天 阅读(4) 评论(0) 推荐(0) 编辑
摘要: yum install java-1.8.0-openjdk-devel.x86_64 阅读全文
posted @ 2020-11-26 14:24 天天代码码天天 阅读(11) 评论(0) 推荐(0) 编辑
摘要: application.properties文件中 logging.config=classpath:logback-spring-dev.xml logback-spring-dev.xml <?xml version="1.0" encoding="UTF-8"?> <configuration 阅读全文
posted @ 2020-11-20 11:48 天天代码码天天 阅读(10) 评论(0) 推荐(0) 编辑
摘要: #分词验证 POST _analyze { "analyzer":"ik_max_word", "text":"elasticsearch 增删查改" } #create a index PUT blog #create a mapping POST blog/_mapping { "propert 阅读全文
posted @ 2020-11-18 11:30 天天代码码天天 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1、在maven中使用ContiPerf <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <d 阅读全文
posted @ 2020-11-16 15:33 天天代码码天天 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 新建js文件:例如warterMark.js 'use strict' let watermark = {} let setWatermark = (str) => { let id = '1.23452384164.123412415' if (document.getElementById(id 阅读全文
posted @ 2020-11-04 16:10 天天代码码天天 阅读(10) 评论(0) 推荐(0) 编辑
摘要: string paras = "p1=test1&p2=test2";//参数 byte[] bytes = Encoding.UTF8.GetBytes(paras); HttpWebRequest httpRequest = (HttpWebRequest)WebRequest.Create(" 阅读全文
posted @ 2020-10-29 16:49 天天代码码天天 阅读(5) 评论(0) 推荐(0) 编辑
摘要: /** * 得到属性值 * @param obj */ public static void getAttributeValue(Object obj) { String nameValues = ""; //得到class Class cls = obj.getClass(); //得到所有属性 阅读全文
posted @ 2020-10-19 16:11 天天代码码天天 阅读(9) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页