今天项目中有两个类,其中相同的属性比较多,手动代码量大。借鉴此篇博客https://www.cnblogs.com/gester/p/5816643.html,然后根据自身需求修改了一下,代码如下: [TestClass] public class UnitTest1 { [TestMethod] ...
分类:
其他好文 时间:
2020-06-23 17:18:00
阅读次数:
84
官方支持文档:https://docs.gitea.io/zh-cn/upgrade-from-gogs/ 0、一开始因为 gogos 很轻量,部署很方便选择了它,但是因为最近 gogos 已经有段时间不更新了,使用过程中发现很多想要功能都没有,用起来很不方便。最近发现还有 gitea 这么个项目,... ...
分类:
其他好文 时间:
2020-06-22 18:58:54
阅读次数:
212
vim /etc/systemd/system/node_exporter.service [Unit] Description=node_exporter Documentation=https://prometheus.io/ After=network.target [Service] Typ ...
分类:
系统相关 时间:
2020-06-22 17:16:37
阅读次数:
107
原文链接:https://www.cnblogs.com/imyalost/p/9296705.html 在利用单元测试框架执行测试用例的过程中,有时只需要执行一部分用例,或者跳过某些暂不需要执行的用例,python的unittest框架就内置这样的功能。 1、unittest.skip()方法 跳 ...
分类:
其他好文 时间:
2020-06-22 15:06:55
阅读次数:
46
JDK动态代理实现原理 动态代理机制 通过实现 InvocationHandler 接口创建自己的调用处理器 通过为 Proxy 类指定 ClassLoader 对象和一组 interface 来创建动态代理类 通过反射机制获得动态代理类的构造函数,其唯一参数类型是调用处理器接口类型 通过构造函数创 ...
分类:
编程语言 时间:
2020-06-21 11:45:06
阅读次数:
62
#安装 #更新数据源 apt-get update (这个步骤其实不需要) #安装 MySQL apt-get install mysql-server 系统将提示您在安装过程中创建 root 密码。选择一个安全的密码,并确保你记住它,因为你以后需要它。接下来,我们将完成 MySQL 的配置。 设置 ...
分类:
数据库 时间:
2020-06-21 00:22:47
阅读次数:
65
Centos 6.x版本 iptables 查看防火墙状态:service iptables tatus iptables:Firewall is not runing. 说明防火墙没有开启 开启防火墙:service iptables start 关闭防火墙:service iptables st ...
分类:
系统相关 时间:
2020-06-20 17:02:14
阅读次数:
62
官方文档 A Python program is constructed from code blocks. A block is a piece of Python program text that is executed as a unit. The following are blocks: ...
分类:
编程语言 时间:
2020-06-18 17:53:59
阅读次数:
63
环境 JDK 6 JUnit 4.13 Spring Tool Suite 4.6.2 Maven 3.6.3 说明 异常测试在 4.13 之前也有,都有一点缺点,不推荐使用,推荐使用 4.13 之后的 assertThrows。 异常测试示例 pom.xml <project xmlns="htt ...
分类:
其他好文 时间:
2020-06-17 23:49:24
阅读次数:
97
适用性 缓存在很多场景下都是相当有用的。例如,计算或检索一个值的代价很高,并且对同样的输入需要不止一次获取值的时候,就应当考虑使用缓存 Guava Cache与ConcurrentMap很相似,但也不完全一样。最基本的区别是ConcurrentMap会一直保存所有添加的元素,直到显式地移除。相对地, ...
分类:
系统相关 时间:
2020-06-17 18:24:02
阅读次数:
81