线程压力测试

摘要: import java.util.*;public class ThreadTest { public static void main(String[] args) throws InterruptedException { new Monitor().start(); new MyThread( 阅读全文
posted @ 2020-03-26 11:09 为莹 阅读(222) 评论(0) 推荐(0) 编辑

SessionUtil

摘要: import cn.edu.zzuli.bean.Shop;import cn.edu.zzuli.bean.User;import org.apache.catalina.servlet4preview.http.HttpServletRequest;import org.springframew 阅读全文
posted @ 2020-03-19 10:06 为莹 阅读(560) 评论(0) 推荐(0) 编辑

安全扫描

摘要: http://xianzhi-forum.oss-cn-shanghai.aliyuncs.com/upload/hack/acunetix_12.0.190902105.zip 阅读全文
posted @ 2020-03-11 12:24 为莹 阅读(249) 评论(1) 推荐(0) 编辑

CxfInvokeUtil

摘要: <!-- CXF调用接口 --> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis-jaxrpc</artifactId> <version>1.4</version> </dependency> <dependency 阅读全文
posted @ 2020-03-04 17:40 为莹 阅读(268) 评论(0) 推荐(0) 编辑

springboot+webservice(cxf和jax-ws两种方式)

摘要: 转自 https://blog.csdn.net/zc157158/article/details/91490876 package com.yikete.controller; import org.apache.cxf.endpoint.Client;import org.apache.cxf. 阅读全文
posted @ 2020-03-04 16:09 为莹 阅读(1752) 评论(0) 推荐(0) 编辑

http 工具类

摘要: package com.adu.model; /** * Http客户端的配置选项 * * @author duyunjie * @date 2019-09-19 14:52 */public class HttpOptions { public static final HttpOptions D 阅读全文
posted @ 2020-03-03 16:30 为莹 阅读(685) 评论(0) 推荐(0) 编辑

cxf 工具类转载

摘要: D:\developTools\apache-cxf-2.5.2\samples\wsdl_first_dynamic_clientCXF 方法 cxf方法serviceInfo.getBindings() BindingInfo--[BindingInfo http://schemas.xmlso 阅读全文
posted @ 2020-03-03 12:28 为莹 阅读(465) 评论(0) 推荐(0) 编辑

Java动态调用Webservice,不生成客户端,基于soapUI

摘要: 转自 https://blog.csdn.net/u014087208/article/details/79927574?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.non 阅读全文
posted @ 2020-03-03 11:07 为莹 阅读(1111) 评论(0) 推荐(0) 编辑

转载 CXF动态调用webservice

摘要: /** * * @param wsdlUrl wsdl的地址:http://localhost:8001/demo/HelloServiceDemoUrl?wsdl * @param methodName 调用的方法名称 selectOrderInfo * @param targetNamespac 阅读全文
posted @ 2020-02-27 16:35 为莹 阅读(2320) 评论(0) 推荐(0) 编辑

spring gzip 静态压缩优化

摘要: HTTP 压缩可以大大提高浏览网站的速度,它的原理是,在客户端请求网页后,从服务器端将网页文件压缩,再下载到客户端,由客户端的浏览器负责解压缩并浏览。相对 于普通的浏览过程HTML ,CSS,Javascript , Text ,它可以节省40%左右的流量。更为重要的是,它可以对动态生成的,包括CG 阅读全文
posted @ 2018-06-04 10:37 为莹 阅读(1383) 评论(0) 推荐(0) 编辑