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