上一页 1 ··· 4 5 6 7 8

shell

摘要: 1、 软链接(类似快捷方式):ln -s 源文件 目标文件;说明:删掉原文件,软链接不可用; 硬链接(硬链接等于cp 加 同步更新):ln 源文件 目标文件;说明:删掉原文件,硬链接不失效(和linux的i节点有关); 2、 locate为模糊搜索;locate /*.ps 更快; 由crontab 阅读全文
posted @ 2019-04-12 19:55 gendway 阅读(217) 评论(0) 推荐(0)

disconf

摘要: disconf.xml 1、xml配置 2、应用属性配置 3、回调(消息通知配置) 阅读全文
posted @ 2019-04-12 14:54 gendway 阅读(254) 评论(0) 推荐(0)

springboot

摘要: 1、 2.0.5.RELEASE 0.2.0 org.springframework.boot spring-boot-dependencies ${spring-boot.version} pom import org.springframework.boot spring-boot-starter-web ${sprin... 阅读全文
posted @ 2019-04-09 17:41 gendway 阅读(137) 评论(0) 推荐(0)

mysql使用存储过程和event定期删除

摘要: -- 创建存储过程DELIMITER //CREATE PROCEDURE del_data()BEGIN DELETE FROM t_route_status WHERE route_date < DATE_SUB(CURDATE(),INTERVAL 7 DAY);END ; -- 创建事件 C 阅读全文
posted @ 2019-03-08 17:04 gendway 阅读(721) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8