错误的写法: SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //这里的格式也可以是别的 createAt =format.parse(y.getCreatedAt()); //此处是接收到的 2019-09-27T18:31:31+08:00 正确的写法: SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH…
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'cronTrigger' defined in file [C:\Users\bxk\Desktop\ssm02\target\ssm02\WEB-INF\classes\spring-context.xml]: Invocation of init method failed; nested exception is j…