摘要:
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 阅读全文