摘要: 在用crontab进行定时任务时,发现任务并没有执行。而手动bash yourshell.sh时可以正常的执行程序。以下是个人的解决流程。 一、将错误打印打out.log */10 * * * * bash yourshell.sh >> /tmp/out.log 2>&1 二、查看out.log发 阅读全文
posted @ 2016-05-20 15:33 lastword 阅读(1110) 评论(0) 推荐(0) 编辑
摘要: 最近接触到定时执行程序的需求,所以学习了解了一下crontab。本文首先介绍crontab的语法知识,然后做一个demo。 一、crontab语法 1.crontab基本格式 {minute} {hour} {day-of-month} {month} {day-of-week} {full-pat 阅读全文
posted @ 2016-05-12 19:23 lastword 阅读(8321) 评论(2) 推荐(0) 编辑
摘要: 一、JSTL标签分类: 二、核心标签 引用方式:<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 1.<c:out>可使用“.”符号来访问属性。例如,要访问customer.address.street 只使用标签<c:o 阅读全文
posted @ 2016-05-09 16:37 lastword 阅读(167) 评论(0) 推荐(0) 编辑
摘要: ERROR 1064 : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax***出现此错误的一般原因为数据... 阅读全文
posted @ 2015-07-10 20:51 lastword 阅读(3106) 评论(0) 推荐(0) 编辑