自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

路遥知码力

www.wdom.net

  • 博客(30)
  • 资源 (19)
  • 问答 (2)
  • 收藏
  • 关注

原创 如何使用Wisdom RESTClient定制满足您个性化需求的API文档?

Wisdom RESTClient 支持自动化测试RESTful API,输出精美的测试报告,生成精美的RESTful API文档。这里介绍一下如何定制个性化的RESTful API文档。定制个性化API文档前请先使用工具测试REST API,产生历史记录;再去选择菜单选项 Apidoc --> Create生成API文档;最后,修改数据文件work/apidoc...

2018-03-19 09:38:04 111

原创 使用Wisdom RESTClient如何在Linux和Mac上获取测试报告和API文档?

使用Wisdom RESTClient自动化测试REST API,生成REST API文档,需要先执行命令java -jar restclient-1.2.jar启动Wisdom RESTClient界面。先使用工具测试REST API,产生历史记录。选择菜单选项 Apidoc --> Create 生成API文档: work/apidoc/apidoc.html选择菜单...

2018-03-19 09:37:42 121

原创 Wisdom RESTClient支持自动化测试并可以生成API文档

Wisdom REST Client V1.2 支持自动化测试RESTful API并生成精美的测试报告,同时基于历史数据自动生成精美的RESTful API文档。工具地址:https://github.com/Wisdom-Projects/rest-client...

2018-03-19 09:37:32 114

原创 使用Wisdom RESTClient进行自动化测试,如何取消对返回的body内容的校验?对排除的JSON属性字段不做校验?...

使用 Wisdom RESTClient 进行自动化测试 REST API,默认是对返回HTTP状态码和body内容都进行严格匹配和校验。(1). 如果每次触发API返回的body内容是动态变化的,可以取消对body内容进行校验;(2). 如果API返回的body是JSON格式 ,需要排除某些属性字段,对其不进行校验,只校验排除后的属性字段;(3). 对HTTP请求和响应的内容进行修改。上...

2018-03-19 09:37:25 102

原创 使用Wisdom RESTClient自动化测试RESTful API和生成REST API文档

Wisdom RESTClient supports automated testing REST API, producing exquisite report, and generating exquisite REST API documentation based on historical cases.Wisdom RESTClient 是由个人所开发的一款自动化测试REST A...

2018-03-18 13:52:25 81

原创 CXF+Spring+Hibernate实现RESTful webservice服务端实例

1.RESTful API接口定义/* * Copyright 2016-2017 WitPool.org All Rights Reserved. * * You may not use this file except in compliance with the License. * A copy of the License is located at...

2018-03-18 13:51:22 104

原创 Spring Boot 实现RESTful webservice服务端实例

1.Spring Boot configurations application.ymlspring: profiles: active: dev mvc: favicon: enabled: false datasource: driver-class-name: com.mysql.jdbc.Driver ur...

2018-03-18 13:51:07 181

原创 有登陆认证的情况下如何使用Wisdom RESTClient?

访问REST API时,很多系统需要登陆认证,登陆成功以后才允许访问API。下面介绍一下有登陆认证情况下如何使用 Wisdom RESTClient 测试API的方法。方法很简单即在浏览器上成功登录系统,取出Cookie里的JSESSIONID值,在 Wisdom RESTClient 的Request视图里的cookie添加一条JSESSIONID记录即可正常访问API了。首先使用火...

2018-03-18 13:41:18 74

原创 如何通过命令行使用Wisdom RESTClient?

Wisdom RESTClient V1.2版本开始支持命令行方式运行。工具地址:https://github.com/Wisdom-Projects/rest-client使用说明:java -jar restclient-1.2.jar [-参数] [文件] 没有指定参数将启动rest-client主界面 没有指定文件将使用默认的work/http_h...

2018-03-18 13:40:33 68

原创 Spring Boot REST API 自动化测试

Spring Boot需要写大量的Junit代码来测试REST API, 这点让不了解代码的人很头疼。如果使用REST client工具测试REST API,很多REST Client工具是不支持自动化测试的,每次都在进行重复的测试,这也会耗费太多的时间去做重复的工作。急需一个适合测试Spring Boot REST API的工具。Wisdom RESTClient专为解决测试Spring ...

2018-03-17 13:09:11 279

原创 Java用Gson按照键值key排序json所有节点

<dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.5</version></dependency><

2018-03-17 13:07:49 340

原创 Java用Gson遍历json所有节点

<dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.0</version></dependency>

2018-03-17 13:06:35 725

原创 Java用Jackson遍历json所有节点

 <!-- jackson begin --><dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.1.4&amp

2018-03-17 13:04:12 2268

原创 Wisdom RESTClient支持自动化测试并可以生成API文档

Wisdom REST Client V1.2 支持自动化测试RESTful API并生成精美的测试报告,同时基于历史数据自动生成精美的RESTful API文档。工具地址:https://github.com/Wisdom-Projects/rest-client...

2018-03-17 12:58:50 53

原创 Java用Jackson遍历json所有节点

<!-- jackson begin --><dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.1.4</ve

2018-03-17 09:31:33 5962

原创 Java用Gson遍历json所有节点

<dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.0</version></dependency><

2018-03-17 09:29:21 1732

原创 Java用Gson按照键值key排序json所有节点

<dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.5</version></dependency><depende

2018-03-17 09:26:40 1540

原创 Spring Boot REST API 自动化测试

Spring Boot需要写大量的Junit代码来测试REST API, 这点让不了解代码的人很头疼。如果使用REST client工具测试REST API,很多REST Client工具是不支持自动化测试的,每次都在进行重复的测试,这也会耗费太多的时间去做重复的工作。急需一个适合测试Spring Boot REST API的工具。Wisdom RESTClient专为解决测试Spring Boo...

2018-03-16 21:02:58 187

原创 Wisdom RESTClient支持自动化测试并可以生成API文档

Wisdom REST Client V1.2 支持自动化测试RESTful API并生成精美的测试报告,同时基于历史数据自动生成精美的RESTful API文档。工具地址:https://github.com/Wisdom-Projects/rest-client...

2018-03-16 21:00:23 115

原创 使用Wisdom RESTClient自动化测试RESTful API和生成REST API文档

Wisdom RESTClient supports automated testing REST API, producing exquisite report, and generating exquisite REST API documentation based on historical cases.Wisdom RESTClient 是由个人所开发的一款自动化测试REST API的工...

2018-03-16 20:58:31 295

原创 如何使用Wisdom RESTClient定制满足您个性化需求的API文档?

Wisdom RESTClient 支持自动化测试RESTful API,输出精美的测试报告,生成精美的RESTful API文档。这里介绍一下如何定制个性化的RESTful API文档。定制个性化API文档前请先使用工具测试REST API,产生历史记录;再去选择菜单选项 Apidoc --> Create生成API文档;最后,修改数据文件work/apidoc/js/apidata.js...

2018-03-16 20:57:17 128

原创 使用Wisdom RESTClient如何在Linux和Mac上获取测试报告和API文档?

使用Wisdom RESTClient自动化测试REST API,生成REST API文档,需要先执行命令java -jar restclient-1.2.jar启动Wisdom RESTClient界面。先使用工具测试REST API,产生历史记录。选择菜单选项 Apidoc --> Create 生成API文档: work/apidoc/apidoc.html选择菜单选项 Test --...

2018-03-16 20:56:02 89

原创 使用Wisdom RESTClient进行自动化测试,如何取消对返回的body内容的校验?对排除的JSON属性字段不做校验?

使用 Wisdom RESTClient 进行自动化测试 REST API,默认是对返回HTTP状态码和body内容都进行严格匹配和校验。(1). 如果每次触发API返回的body内容是动态变化的,可以取消对body内容进行校验;(2). 如果API返回的body是JSON格式 ,需要排除某些属性字段,对其不进行校验,只校验排除后的属性字段;(3). 对HTTP请求和响应的内容进行修改。上述三种情...

2018-03-16 20:54:42 137

原创 有登陆认证的情况下如何使用Wisdom RESTClient?

访问REST API时,很多系统需要登陆认证,登陆成功以后才允许访问API。下面介绍一下有登陆认证情况下如何使用 Wisdom RESTClient 测试API的方法。方法很简单即在浏览器上成功登录系统,取出Cookie里的JSESSIONID值,在 Wisdom RESTClient 的Request视图里的cookie添加一条JSESSIONID记录即可正常访问API了。首先使用火狐浏览器登陆...

2018-03-16 20:53:31 158

原创 如何通过命令行使用Wisdom RESTClient?

Wisdom RESTClient V1.2版本开始支持命令行方式运行。工具地址:https://github.com/Wisdom-Projects/rest-client使用说明:java -jar restclient-1.2.jar [-参数] [文件] 没有指定参数将启动rest-client主界面 没有指定文件将使用默认的work/http_history.json...

2018-03-16 20:52:09 125

原创 CXF+Spring+Hibernate实现RESTful webservice服务端实例

1.RESTful API接口定义/* * Copyright 2016-2017 WitPool.org All Rights Reserved. * * You may not use this file except in compliance with the License. * A copy of the License is located at * http://...

2018-03-16 20:49:00 112

原创 Spring Boot 实现RESTful webservice服务端实例

1.Spring Boot configurations application.ymlspring: profiles: active: dev mvc: favicon: enabled: false datasource: driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql:...

2018-03-16 20:47:33 247

RESTful API文档自动生成神器

REST Client tool for testing RESTful API. This tool supports automated testing and automatically generating RESTful API document. Wisdom REST Client V1.1可以自动生成RESTful API 文档,生成的文档是基于用户测试数据。 ...

2017-10-01 22:56:02 644

REST Client 自动化测试 RESTful API

Wisdom  RESTClient可以自动化测试RESTful API 接口,用户手工输入HTTP请求信息,执行HTTP请求,请求完成后会得到HTTP 响应信息。每次的HTTP请求响应信息会在被记录到历史信息表里。用户可以执行测试历史记录完成对历史信息的自动化测试,测试结束会自动生成测试报告。使用Wisdom Tool REST Client可以协助RESTful API开发和测试,提高开发...

2017-08-12 22:01:33 393

原创 分享一个比较好用的RESTFUL API 自动化测试工具

1.工具地址: https://github.com/Wisdom-Projects/rest-client WisdomTool RESTClient自动化测试工具源代码:https://github.com/Wisdom-Projects/rest-client 2.工具使用: # Automation-Test-ToolAutomation T...

2017-02-09 14:36:53 1245 2

公网访问局域网WEB

本地安装了WEB服务端,只能在局域网内访问,怎样从公网也能访问本地WEB? 本文将介绍使用holer实现的具体步骤。

2018-11-20

公网访问局域网Linux

局域网内的主机上安装了Linux系统,只能在局域网内访问,怎样从公网也能访问本地Linux系统? 本文将介绍使用holer来实现的具体步骤。

2018-11-20

公网访问本地数据库

本地安装了数据库,只能在局域网内访问,怎样从公网也能访问本地数据库? 本文将介绍使用holer来实现的具体步骤。

2018-11-20

restclient java

Wisdom RESTClient https://github.com/Wisdom-Projects/rest-client

2018-03-17

API接口文档生成工具下载

Wisdom RESTClient https://github.com/Wisdom-Projects/rest-client

2018-03-13

restful api 测试工具

Wisdom RESTClient https://github.com/Wisdom-Projects/rest-client

2018-03-13

rest接口测试工具

Wisdom RESTClient https://github.com/Wisdom-Projects/rest-client

2018-03-13

restclient.jar 工具

Wisdom RESTClient https://github.com/Wisdom-Projects/rest-client

2018-03-13

WisdomTool RESTClient V1.2 源代码

自动化测试REST API工具,可以生成精美的测试报告和REST API文档

2018-03-11

WisdomTool RESTClient V1.2

A tool for automated testing REST API, generating exquisite testing report and REST API documentation.

2018-03-11

restful接口测试工具

WisdomTool RESTClient支持自动化测试,可以生成精美的测试报告和API文档 https://github.com/wisdomtool/rest-client

2018-03-07

RESTClient测试工具

WisdomTool REST Client,支持自动化测试RESTful API,输出精美的测试报告,并且可以生成RESTful API文档。 https://github.com/wisdomtool/rest-client

2018-01-13

rest 测试工具

WisdomTool REST Client,支持自动化测试RESTful API,输出精美的测试报告,并且自动生成RESTful API文档。 工具精悍哦! https://github.com/wisdomtool/rest-client

2017-12-22

restclient.jar

WisdomTool REST Client,支持自动化测试RESTful API,输出精美的测试报告,并且自动生成精美的RESTful API文档。 轻量级的工具,功能却很精悍哦! https://github.com/wisdomtool/rest-client WisdomTool REST Client supports automated testing, output exquisite report, and automatically generating RESTful API document. Lightweight tool with very powerful features! https://github.com/wisdomtool/rest-client

2017-12-06

restclient下载

WisdomTool REST Client,支持自动化测试RESTful API,输出精美的测试报告,并且自动生成精美的RESTful API文档。 轻量级的工具,功能却很精悍哦! https://github.com/wisdomtool/rest-client WisdomTool REST Client supports automated testing, output exquisite report, and automatically generating RESTful API document. Lightweight tool with very powerful features! https://github.com/wisdomtool/rest-client

2017-12-06

Google ZXing 3.3.2 二维码生成 JAR包

二维码生成工具类 Google ZXing 3.3.2 生成二维码,支持的Java 1.7及以上版本

2017-12-06

REST Client 工具

很多REST Client是不支持自动化测试RESTful API,也不支持自动生成API文档. 之前习惯用一款名字为 WisdomTool REST Client,支持自动化测试RESTful API,输出精美的测试报告,并且自动生成精美的RESTful API文档。 轻量级的工具,功能却很精悍哦! https://github.com/wisdomtool/rest-client Most of REST Client tools do not support automated testing. Once used a tool called WisdomTool REST Client supports automated testing, output exquisite report, and automatically generating RESTful API document. Lightweight tool with very powerful features! https://github.com/wisdomtool/rest-client

2017-11-30

REST Client 测试工具

很多REST Client是不支持自动化测试RESTful API,也不支持自动生成API文档. 之前习惯用一款名字为 WisdomTool REST Client,支持自动化测试RESTful API,输出精美的测试报告,并且自动生成精美的RESTful API文档。 轻量级的工具,功能却很精悍哦! https://github.com/wisdomtool/rest-client Most of REST Client tools do not support automated testing. Once used a tool called WisdomTool REST Client supports automated testing, output exquisite report, and automatically generating RESTful API document. Lightweight tool with very powerful features! https://github.com/wisdomtool/rest-client

2017-11-30

清华大学学士论文(值得一见)

清华大学激光导航运载机器人运行环境和引导环境的中文动态画面输入软件

2009-03-14

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除