Common

common-logging的使用

net-commons/common-logging(GitHub原始项目地址) 使用文档 由于源项目已经不再维护,因此本人拉取了代码进行整理和修复发现的问题。 项目地址:arrow_right: 使用手册 支持的参数 level - 全局支持 showDateTime - 全局支持 showLog ......
common-logging logging common

Windows 10 专业版下推送docker镜像到harbor报错:x509: certificate relies on legacy Common Name field, use SANs instead

harbor是公司私有镜像仓库,在Windows 10 专业版上安装上docker DeskTop,客户端成功开启之后,就是推送镜像啦。 记得先登录, docker login --username=admin xxx.harbor.com:10443,这个不能忘记!! 在实际推送中遇到了几个问题, ......
certificate 镜像 Windows instead Common

[Algorithm] Dynamic programming - 02 - Longest Common Subsequence - Drawing 2d matrix + back tracing

Write a function that takes in two strings and returns their longest common subsequence. A subsequence of a string is a set of characters that aren't ......

注入了一个记录日志的接口,启动微服务工程的时候报错了:No qualifying bean of type 'com.cscecnf.common.log.SysOprLogDao'

【问题描述】 Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'monitorAreaServiceImpl': Injection of resour ......

117selenium----selenium.common.exceptions.SessionNotCreatedException Message session not created报错

我用的是谷歌,运行报错,selenium.common.exceptions.SessionNotCreatedException Message session not created 原因是:谷歌版本更新了 解决方法如下: 1、下载对应版本地址:https://registry.npmmirro ......

POJ3415 Common Substrings 后缀数组 + 单调栈

传送门 题目大意: ** 给出两个字符串S和T,求出两个字符串之间有多少长度大于K的公共子区间。** ** 由于每一个子串都是包含在某一个后缀的前缀里面,求出sa和height了之后,我们可以将height进行分组,height < k为分割线,这样一来每个组内都是height >= k的后缀。我们 ......
数组 后缀 Substrings Common 3415