摘要: // 排除api中不引数据库导致的报错包 @ComponentScan(excludeFilters = { @ComponentScan.Filter(type = FilterType.REGEX,pattern = "com.integration.aop.log.service.*") }) 阅读全文
posted @ 2023-02-27 09:20 Aoul 阅读(492) 评论(0) 推荐(0) 编辑
摘要: Git提交代码 git status 查看文件状态红色的没有加入缓存区 绿色的已经加入缓存区 git add . 把代码加入缓存区 git commit -m '备注' 提交代码并备注 git pull 拉取代码 git push origin 分支名 把代码推送到某一个分支上面 git log 提 阅读全文
posted @ 2023-02-27 09:18 Aoul 阅读(14) 评论(0) 推荐(0) 编辑
摘要: QueryWrapper userquery= new QueryWrapper<>(); user.and(true,wrapper -> wrapper.ge("CREATE_DATE",begin)) .and(true,wrapper -> wrapper.le("CREATE_DATE", 阅读全文
posted @ 2023-02-27 09:17 Aoul 阅读(247) 评论(0) 推荐(0) 编辑
摘要: #分页工具类 /** * 分页参数处理 */public class PageUtil { /** * 分页返回数据封装 * * @param page * @return Map<String, Object> * @author Hd * @date 2021/12/18 12:47 */ pu 阅读全文
posted @ 2023-02-27 08:55 Aoul 阅读(253) 评论(0) 推荐(0) 编辑
摘要: package com.zmj.sy.modules.andon.util;import java.text.DateFormat;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.D 阅读全文
posted @ 2023-02-25 11:41 Aoul 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 复制list集合BeanUtil.copyToList(problemTypeList, ProblemTypeVo.class);stream 根据属性拼接字符串List<String> nameList = personList.stream().map(Person::getName).col 阅读全文
posted @ 2023-02-22 09:10 Aoul 阅读(64) 评论(0) 推荐(0) 编辑
摘要: Forest 文档 https://forest.dtflyx.com/Controller @RestController@RequestMapping("/forest")@Api(tags = "Forest")public class ForestController { @Resource 阅读全文
posted @ 2023-02-15 17:08 Aoul 阅读(624) 评论(0) 推荐(0) 编辑
摘要: public static boolean isNumeric(String str) { Pattern pattern = Pattern.compile(".*[0-9].*"); return pattern.matcher(str).matches();} 阅读全文
posted @ 2023-02-15 17:04 Aoul 阅读(14) 评论(0) 推荐(0) 编辑
摘要: import lombok.extern.slf4j.Slf4j;import org.springframework.boot.web.context.WebServerInitializedEvent;import org.springframework.context.ApplicationL 阅读全文
posted @ 2022-01-28 09:20 Aoul 阅读(894) 评论(0) 推荐(0) 编辑
摘要: 自定义banner必须放在 resources 目录下(不需要配置,直接放在根目录,会自动扫描)命名必须为 banner.txt获取自定义 Banner 文本(https://www.bootschool.net/ascii)颜色:${AnsiColor.BLUE}SpringBoot版本并格式化: 阅读全文
posted @ 2022-01-13 17:03 Aoul 阅读(898) 评论(0) 推荐(0) 编辑