搭建改造内容,变更项目名、包名、用户、sql等 1获取服务失败,创建bean失败,bean注入失败,获取不到实例? 全文搜索 basePackage,ComponentScan包扫描相关内容,配置一起修改 2 服务间注册失败,注册不到nacos? 关注jasypt.encryptor.passwor ...
分类:
编程语言 时间:
2020-11-24 12:04:56
阅读次数:
7
Difficulty: Medium Related Topics: Depth-first Search, Breadth-first Search, Union Find Link: https://leetcode.com/problems/number-of-islands/ Descrip ...
分类:
其他好文 时间:
2020-11-23 12:25:21
阅读次数:
3
MySQL5.6之后的版本在通过客户端连接或者备份时时都会有出现如下的一个警告: Warning: Using a password on the command line interface can be insecure. 在一些脚本操作中可能会造成一些干扰,这里介绍下两种方式来避免这个输出: ...
分类:
数据库 时间:
2020-11-23 12:08:06
阅读次数:
13
Difficulty: Medium Related Topics: String, Backtracking Link: https://leetcode.com/problems/letter-combinations-of-a-phone-number/ Description Given a ...
分类:
移动开发 时间:
2020-11-21 12:45:15
阅读次数:
31
[root@monitor scripts]# cat checkmysqlperformance.sh #!/bin/sh #Create by sfzhang 2014.02.20 MYSQL_SOCK="/data/mysql/3306/mysql.sock" MYSQL_PWD=`cat / ...
分类:
数据库 时间:
2020-11-21 12:22:16
阅读次数:
13
Link: https://www.luogu.com.cn/problem/P1903 Solution 这个 sort 我暂且蒙在鼓里 先贴个代码。 本来我 T 了三个点的 cmp 函数如下 bool cmp(const s_q &a, const s_q &b) { if (belong[a. ...
分类:
其他好文 时间:
2020-11-21 11:54:33
阅读次数:
4
登录页面开发 调整项目目录结构如下 其中 src\router\router.js export default [ { // 命名路由,在router-link中,to属性 :to="{name: 'login'}" path: '/', name: 'login', // 路由名称 // rou ...
分类:
其他好文 时间:
2020-11-20 12:11:52
阅读次数:
8
要找到目标元素,通过浏览器检查的方式或者按F12键,找到该控件元素,通过其ID、class等属性,能够唯一定位到该元素。 Selenium提供了8种定位方式。 id name class name tag name link text partial link text xpath css sele ...
分类:
其他好文 时间:
2020-11-19 12:57:08
阅读次数:
21
\(Link\) Description 给一个长度为$n$的数列和$m$,在数列任选若干个数,使得他们的和对$m$取模后最大。 \(n ≤ 35, 1 ≤ m ≤ 10^9\) Solution $n$这么小,一看就知道要爆搜。但纯搜索是$O(2^n)$的,跑不过去。这时可以考虑$Meet\ in ...
分类:
其他好文 时间:
2020-11-19 12:16:10
阅读次数:
5
使用Turbine监控集群监控,在测试的时候出现了一些问题 http://localhost:9003/turbine.stream 没有获取到数据 http://localhost:9003/hystrix/monitor 监控界面一直loading 后台报Property or field 'd ...
分类:
移动开发 时间:
2020-11-19 12:14:31
阅读次数:
16