摘要:
1.POM <dependency> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.2</version> </dependency> <plugin> <groupId 阅读全文
摘要:
1.跳过测试 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configu 阅读全文
摘要:
一、jmeter使用; 1、获取请求参数; 入参可以写固定值,可以使用用户定义变量,可以读取文件获取、可以通过函数助手生成、可以通过beanshell前置处理器加工生成,以加密为例介绍2种; (1)使用函数助手的加密方法(算法摘要,可输入值:MD2、MD5、SHA-1、SHA-224、SHA-256 阅读全文
摘要:
很多java开发的小伙伴都会阅读jdk源码,然而确不知道应该从哪读起。以下为小编整理的通常所需阅读的源码范围。 标题为包名,后面序号为优先级1-4,优先级递减 1、java.lang 1) Object 1 2) String 1 3) AbstractStringBuilder 1 4) Stri 阅读全文
摘要:
1、重新建立表空间 存储文件 用户联系 create tablespace DB_PKI datafile 'DB_PKI_TABLESPACE.dbf' size 200M reuse autoextend on next 5M maxsize unlimited; create user DB_ 阅读全文
摘要:
ITU-T的:http://www.itu.int/ IETF的:https://www.ietf.org/ 阅读全文
摘要:
备份某个表:mysqldump -u username -p password database_name table_name > backup_file.sql备份多个表:mysqldump –u username -p password database_name table1 table2 阅读全文
摘要:
import org.apache.jmeter.config.Arguments; import org.apache.jmeter.protocol.java.sampler.AbstractJavaSamplerClient; import org.apache.jmeter.protocol 阅读全文
摘要:
查看防火墙状态 systemctl status firewalld.service 开启防火墙 systemctl start firewalld.service 防火墙开机启动 systemctl enable firewalld.service关闭防火墙开机启动systemctl disabl 阅读全文
摘要:
from ctypes import CDLL, RTLD_GLOBAL from ..anke import currentOS class LoadSo: def __init__(self, soPath, args): if currentOS != 'darwin': for arg in 阅读全文