Correct the classpath of your application so that it contains a single, compatible version of com.fasterxml.jackson.dataformat.xml.XmlMapper 解决:
改用其他版本,我没写版本号,springboot自己默认的是 2.11.4 版本
成功启动项目…
一、Date类使用方法。
1. new Date() 返回当前时间
Date date new Date();
System.out.println(date);//输出当前的时间。源码解释为:
2. new Date(10006060*24); 返回 从 Fri Jan 01 08:00:00 CST 1970经过1天的时间
long time 1000*60*60*24;
Date date n…