最近,在项目开发过程中使用了RedisTemplate,进行单元测试时提示“Field redisTemplate in com.example.demo1.dao.RedisDao required a bean of type ‘org.springframework.data.redis.co ...
分类:
编程语言 时间:
2020-06-16 15:14:43
阅读次数:
55
公司要做QA安全测试,组长就丢了一个源码包给我,什么资料都无。 系统是个Laravel框架,源码都是从线上git下来。然后看了本地composer.json 没有生成vendor 第一步安装 composer.phar,让它可以识别composer.json 下载地址:https://mirrors ...
分类:
数据库 时间:
2020-06-16 12:57:01
阅读次数:
176
package com.example.demo; import java.util.LinkedList; /** * 112. 路径总和 * 给定一个二叉树和一个目标和,判断该树中是否存在根节点到叶子节点的路径,这条路径上所有节点值相加等于目标和。 * <p> * 说明: 叶子节点是指没有子节点 ...
分类:
其他好文 时间:
2020-06-16 12:55:12
阅读次数:
52
Repeated DNA Sequences (M) 题目 All DNA is composed of a series of nucleotides abbreviated as A, C, G, and T, for example: "ACGAATTCCG". When studying D ...
分类:
其他好文 时间:
2020-06-16 10:26:45
阅读次数:
64
Searching a string using the ‘Find‘ or ‘Find & Replace‘ function in text editors highlights the relevant match (e.g. searching ‘le‘ highlights it insi ...
分类:
其他好文 时间:
2020-06-15 23:19:53
阅读次数:
101
脚本 /** 自动重启gin框架文件 执行命令 go example.go -start main.go **/ package main import ( "flag" "fmt" "github.com/fsnotify/fsnotify" "log" "os" "os/exec" "path/ ...
分类:
其他好文 时间:
2020-06-15 23:14:32
阅读次数:
84
Heredoc 结构的字符串与双引号("")字符串对比分析 <?php $str = <<<EOD Example of string spanning multiple lines using heredoc syntax. EOD; /* 含有变量的更复杂示例 */ class foo { va ...
分类:
Web程序 时间:
2020-06-15 22:52:39
阅读次数:
86
Spring Cloud Gateway 内置Filter Spring Cloud Gateway中内置了很多过滤器,实现类有二十多个; 分类几类: AddRequestHeader 给请求加上一条header信息; spring: cloud: gateway: routes: - id: ad ...
分类:
编程语言 时间:
2020-06-15 17:57:42
阅读次数:
68
Jenkins插件开发完全示例 插件功能 在Jenkins构建之前选择Slave Server进行构建。 Slave Server搭建 准备工作 安装Java 安装Maven 命名规约 artifactId: 使用小写 ID ,并根据需要使用连字符分隔术语 除非名称有任何意义,否则不要在 ID 中包 ...
分类:
其他好文 时间:
2020-06-15 17:34:43
阅读次数:
63
Given any string of N (≥) characters, you are asked to form the characters into the shape of U. For example, helloworld can be printed as: h d e l l r ...
分类:
其他好文 时间:
2020-06-15 15:34:10
阅读次数:
61