摘要: https://www.netsarang.com/zh/xmanager/ 下载了就好了 我的图片出不来,下了就好了。 阅读全文
posted @ 2019-11-21 19:03 乡屯米卒 阅读(7720) 评论(1) 推荐(0) 编辑
摘要: 可能是栈溢出(StackOverFlow) 背景:我用定时器new东西 原因:频率太快了好像! 阅读全文
posted @ 2019-11-21 11:02 乡屯米卒 阅读(7207) 评论(0) 推荐(0) 编辑
摘要: String转Date String date=""; SimpleDateFormat format=new SimpleDateFormat("yyyy-MM-dd"); Date d=format.parse(date);Date转String Date d=new Date(); Simpl 阅读全文
posted @ 2019-11-21 11:00 乡屯米卒 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 在增删改查的过程中有一个#{ }没有填写 阅读全文
posted @ 2019-11-21 10:59 乡屯米卒 阅读(2552) 评论(0) 推荐(1) 编辑
摘要: https://www.cnblogs.com/xiangtunmizu/p/11904211.html 阅读全文
posted @ 2019-11-21 10:58 乡屯米卒 阅读(2562) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-11-21 10:57 乡屯米卒 阅读(1375) 评论(0) 推荐(0) 编辑
摘要: <update id="truncateTable"> truncate table ${tableName} </update> <update id="truncateTable"> truncate table tableName </update> 阅读全文
posted @ 2019-11-21 10:54 乡屯米卒 阅读(2336) 评论(0) 推荐(0) 编辑
摘要: Thu Nov 21 10:39:40 GMT+08:00 2019 getDate() 从 Date 对象返回一个月中的某一天 (1 ~ 31)。getDay() 从 Date 对象返回一周中的某一天 (0 ~ 6)。getMonth() 从 Date 对象返回月份 (0 ~ 11)。getFul 阅读全文
posted @ 2019-11-21 10:40 乡屯米卒 阅读(387) 评论(0) 推荐(0) 编辑
摘要: 每隔5秒执行一次:"*/5 * * * * ?" 每隔1分钟执行一次:"0 */1 * * * ?" 每天23点执行一次:"0 0 23 * * ?" 每天凌晨1点执行一次:"0 0 1 * * ?" 每月1号凌晨1点执行一次:"0 0 1 1 * ?" 每月最后一天23点执行一次:"0 0 23 阅读全文
posted @ 2019-11-21 10:38 乡屯米卒 阅读(1067) 评论(0) 推荐(0) 编辑
摘要: 待写 阅读全文
posted @ 2019-11-21 10:35 乡屯米卒 阅读(787) 评论(0) 推荐(0) 编辑
摘要: ps aux|grep redis-server ps -ef |grep redis netstat -tunple|grep 6379 netstat -lntp | grep 6379 阅读全文
posted @ 2019-11-21 10:33 乡屯米卒 阅读(731) 评论(0) 推荐(0) 编辑
摘要: 绝对路径,"/home/myDir/xxx.bat" OR 所在的目录,:"./xxx.bat". 阅读全文
posted @ 2019-11-21 10:28 乡屯米卒 阅读(6188) 评论(0) 推荐(0) 编辑
摘要: select id,name,substr(dept,1,2) from test; 提取字段dept前两位 substr(string,start,length) 阅读全文
posted @ 2019-11-21 10:22 乡屯米卒 阅读(224) 评论(0) 推荐(0) 编辑