08 2022 档案
摘要:/** * 判断该对象是否所有属性为空 * 返回ture表示所有属性为null,返回false表示不是所有属性都是null */ public static boolean isAllFieldNull(Object object) { boolean flag = true; if (null =
阅读全文
摘要:MySQL V8.0.22 [mysqld] # 跳过登录验证 skip-grant-tables use mysql; update user set authentication_string = '' where User = 'root' and Host = 'localhost'; fl
阅读全文