protected Logger log = Logger.getLogger(this.getClass());
try {
log.debug("执行开始...");
log.debug("执行结束...");
} catch (Exception e) {
log.error("异常消息:"+ExceptionUtil.exception2String(e));
log.debug(ExceptionUtil.exceptionStack2String(e));
}