摘要:
java访问webserice接口xml报文 阅读全文
摘要:
其实这个报错原因也很简单,就是443端口被占用了 1、查看443端口是否被占用?是哪个占用的? root@104 ~]# netstat -anon | grep 443 2、杀掉占用的443端口的进程 [root@104 ~]# fuser -k 443/tcp 然后在使用:./nginx 启动 阅读全文
摘要:
Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.065 s <<< FAILURE! - in xxx.xxxinitializationError(xxx.xxx) Time elapsed: 0.009 s << 阅读全文
摘要:
负载地址: http://localhost:88 配置文件 1 worker_processes 1; 2 3 events { 4 worker_connections 1024; 5 } 6 7 8 http { 9 include mime.types; 10 default_type ap 阅读全文
摘要:
1 <!--解析xml报文--> 2 <dependency> 3 <groupId>dom4j</groupId> 4 <artifactId>dom4j</artifactId> 5 <version>1.6.1</version> 6 </dependency> 新增一个接口 1 @WebSe 阅读全文
摘要:
服务器端 package com.cs; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.ServerSocket; import java.ne 阅读全文
摘要:
1 //全屏 2 function toggleFullScreen() { 3 if (!document.fullscreenElement && // alternative standard method 4 !document.mozFullScreenElement && !docume 阅读全文
摘要:
JS示例代码:(这里的注意点,如果输入的不合法,return false,参数可以不写) 1 function form_yz(form) { 2 var interfaceName = $('#interfaceName').val(); 3 if (interfaceName '') { 4 a 阅读全文
摘要:
备注:回调函数 res 返回一个json格式的字符串 $.ajax({ method: 'post', url: '${pageContext.request.contextPath}/Request/request', data: {"url": url, "requestBody": reque 阅读全文
摘要:
curl 模拟 GET\POST 请求,以及 curl post 上传文件一般情况下,我们调试数据接口,都会使用一个 postman 的工具,但是这个工具还是有点大了。事实上,我们在调试一些小功能的时候,完全没有必要使用它。在命令行中,我们使用 curl 这个工具,完全可以满足我们轻量的调试要求。 阅读全文