摘要:
首先查看数据库时区 show variables like "%time_zone%"; # 设置全局时区 mysql> set global time_zone = '+8:00'; # 设置时区为东八区 mysql> set time_zone = '+8:00'; # 刷新权限使设置立即生效 阅读全文
摘要:
@value不能直接注入值给静态属性,spring 不允许/不支持把值注入到静态变量中;spring支持set方法注入,我们可以利用非静态setter 方法注入静态变量 @Component public class SendMessageUtil { public static String ac 阅读全文