09 2021 档案

摘要:目前看到的有好几种 1、Java自带的java.io和java.net2、Apache的HttpClient上面2个比较老了,不准备用,就了解一下有这个东西就行了。参考来源:https://www.cnblogs.com/sinosoft/p/10556993.html3、okhttp,这个是我自己 阅读全文
posted @ 2021-09-29 11:43 whitewall 阅读(2454) 评论(0) 推荐(0)
摘要:一、Allure安装官网:https://docs.qameta.io/allure/1、我下载的是2.10.0 的zip版本 https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/2、然后解压,设置bin目 阅读全文
posted @ 2021-09-28 17:44 whitewall 阅读(221) 评论(0) 推荐(0)
摘要:testng默认模板乱码,体验也不好,以下是reportng使用方法 依赖 <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.25</ 阅读全文
posted @ 2021-09-28 15:57 whitewall 阅读(115) 评论(0) 推荐(0)
摘要:一、maven项目添加插件 <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.14.3</version> <scope>compile</scope> </dependency 阅读全文
posted @ 2021-09-26 18:34 whitewall 阅读(159) 评论(0) 推荐(0)
摘要:自学了好一阵子,发现java注解这块实在是太重要了,故拿出来作为一篇笔记。 一、定义 1、注解与类、接口、枚举是在同一个层次,可以成为java 的一个类型。2、注解是一种元数据,它是一种描述数据的数据,其作用在于提供程序本身以外的一些数据信息,也就是说他不会属于程序代码本身,不参与逻辑运算,故而不会 阅读全文
posted @ 2021-09-22 22:14 whitewall 阅读(120) 评论(0) 推荐(0)