当启动一个不连接数据库的springboot时,会报错
Cannot determine embedded database driver class for database type NONE 是因为springboot在启动时,会扫描DataSource相关配置的包所以SpringBootApplication(exclude {DataSourceAutoConfiguration.c…
Date 的方法 console.log(typeof Date);// "function" Date的实例 console.log(typeof new Date());
// "object"
console.log(new Date());
// 获取本机的系统时间;
var time new Date();
console.log(time.getFullYear());
// 获取时间年&am…
java中涉及到浮点计算,就会有误差,
float和double只能用来做科学计算或者是工程计算,在商业计算中我们要用 java.math.BigDecimal public class MoneyTest{ public static void main(String[] args) { System.out.println(2.00 - 1.10);/…