摘要: 1、cmd命令切换到redis的安装目录 2、执行如下命令,将redis注册成为windows的服务 redis-server --service-install redis.windows.conf 3、在windows服务管理处启动redis或者执行如下命令 redis-server --ser 阅读全文
posted @ 2023-02-27 09:21 Aoul 阅读(427) 评论(0) 推荐(0) 编辑
摘要: // 排除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) 编辑