此博客链接:https://www.cnblogs.com/ping2yingshi/p/13052844.html 各位相加 题目链接:https://leetcode-cn.com/problems/add-digits/ 给定一个非负整数 num,反复将各个位上的数字相加,直到结果为一位数。 ...
分类:
其他好文 时间:
2020-06-06 00:36:08
阅读次数:
53
背景 在日常kubernetes的运维中,经常遇到pod的网络问题,如pod间网络不通,或者端口不通,更复杂的,需要在容器里面抓包分析才能定位。而kubertnets的场景,pod使用的镜像一般都是尽量精简,很多都是基于alpine基础镜像制作的,因而pod内没有ping,telnet,nc,cur ...
分类:
Web程序 时间:
2020-06-05 23:08:50
阅读次数:
80
lombok-ex lombok-ex 是一款类似于 lombok 的编译时注解框架。 主要补充一些 lombok 没有实现,且自己会用到的常见工具。 编译时注解性能无任何损失,一个注解搞定一切,无三方依赖。 创作目的 补充 lombok 缺失的注解,便于日常开发使用。 lombok 的源码基本不可 ...
分类:
其他好文 时间:
2020-06-05 23:06:06
阅读次数:
64
包装器 异常处理的关键词 trya catch finally throw throws try{ }catch(Exception e){ } try{ }catch(Exception e){ } try(){ } try{ }catch(Exception e){ }catch(Excepti ...
分类:
编程语言 时间:
2020-06-05 20:46:30
阅读次数:
62
题意 考虑点分治来枚举树上联通块,对于一个联通块,我们做有依赖性的树形DP即可,需要用单调队列优化多重背包。 有依赖性的树形DP code: #include<bits/stdc++.h> using namespace std; const int maxn=510; const int maxm ...
分类:
其他好文 时间:
2020-06-05 15:05:32
阅读次数:
53
Mybatis 异常 报错信息: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for map ...
分类:
其他好文 时间:
2020-06-05 14:42:09
阅读次数:
46
网络丢包问题的分析思路 ping 基于 ICMP 协议,hping3 可以基于 TCP 协议。 # -c 表示发送 10 个请求,-S 表示使用 TCP SYN,-p 指定端口为 80 $ hping3 -c 10 -S -p 80 192.168.0.30 HPING 192.168.0.30 ( ...
分类:
系统相关 时间:
2020-06-04 23:12:40
阅读次数:
137
ping这个小工具大家都非常熟悉,但是他不能ping端口,当我们需要知道目的地址的某端口是否开放时,这时需要用到这个tcping小工具了,Windows没有自带这个小工具,需要自己下载下来,放到指定目录里面。 一,先去官网下载tcping工具,链接https://download.elifulker ...
ssh wget scp ping netsat route host sftp ...
分类:
系统相关 时间:
2020-06-04 15:41:27
阅读次数:
71
Interceptor拦截器入门及使用技巧 Interceptor拦截器入门 <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</versio ...
分类:
编程语言 时间:
2020-06-04 15:18:37
阅读次数:
69