摘要:
1 public static <T> T mapToBean(Map<String, Object> map, Class<T> beanClass) { 2 3 if (MapUtils.isEmpty(map)) { 4 return null; 5 } 6 7 try { 8 T t = b 阅读全文
摘要:
//cronExpression 就是cron表达式1 CronSequenceGenerator generator = new CronSequenceGenerator(cronExpression); 2 return generator.next(StringUtils.isBlank(l 阅读全文