01 2024 档案
摘要:)进入到/etc/rc.d目录 cd /etc/rc.d 2) 修改文件可执行权限,默认情况下是没有该权限的 chmod +x rc.local 3) 编辑rc.local文件,添加需要执行的命令
阅读全文
摘要:https://zhuanlan.zhihu.com/p/650390185?utm_id=0 1. CompletableFuture 简介 1.1 概述 CompletableFuture是 Java 8 中引入的一个类,它实现了CompletionStage接口,提供了一组丰富的方法来处理异步
阅读全文
摘要:https://www.jianshu.com/p/d94d9f1cf744
阅读全文
摘要:private void printMethod(JoinPoint joinPoint, String name) throws NoSuchMethodException { MethodSignature signature = (MethodSignature) joinPoint.getS
阅读全文
摘要:dynamic: primary: master #设置默认的数据源或者数据源组,默认值即为master strict: true #严格匹配数据源,默认false. true未匹配到指定数据源时抛异常,false使用默认数据源 druid: # 空闲时执行连接测试 test-while-idle:
阅读全文
摘要:添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> </dependency> 1.注解不生效 @Cacheable(valu
阅读全文
摘要:在Java中遍历树形结构可以使用深度优先算法(DFS)或广度优先算法(BFS)。 深度优先算法(DFS)的示例代码如下所示: class TreeNode { int val; List<TreeNode> children; public TreeNode(int val) { this.val
阅读全文