摘要:
@ConfigurationProperties(prefix = “xx.xx.xx“) 从配置文件中取值赋给类的属性 @ConfigurationProperties(prefix = “xx.xx.xx”)该注解的作用是从配置文件中取值赋给类的属性,当然也可以为方法的变量赋值 /** * 服务 阅读全文
摘要:
计算两个时间相隔的小时数 import java.time.Duration; import java.time.LocalDateTime; public class Hello { public static void main(String[] args) { /** * now=2023-1 阅读全文
摘要:
xxlJob Cron表达式 0 0 8,13 * * ? Cron有如下两种语法格式:(1)Seconds Minutes Hours DayofMonth Month DayofWeek Year(2)Seconds Minutes Hours DayofMonth Month DayofWee 阅读全文
摘要:
mysql 判断字符串结尾 CREATE TABLE `tbl_str` ( `id` INT DEFAULT NULL, `Str` VARCHAR(30) DEFAULT NULL) INSERT INTO `mytest`.`tbl_str` (`id`, `Str`) VALUES ('1' 阅读全文
摘要:
insert into 表名 set CREATE TABLE `tbl_str` ( `id` INT DEFAULT NULL, `Str` VARCHAR(30) DEFAULT NULL ) ##批量 INSERT INTO `mytest`.`tbl_str` (`id`, `Str`) 阅读全文