上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页
摘要: 创建多线程和线程池 import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.TimeUnit; //开启的线程数 int threa 阅读全文
posted @ 2020-05-26 21:50 怒吼的萝卜 阅读(1950) 评论(2) 推荐(0) 编辑
摘要: Server服务端 server: port: 8761 eureka: client: #实例是否在eureka服务器上注册自己的信息以提供其他服务发现,默认为true register-with-eureka: false #此客户端是否获取eureka服务器注册表上的注册信息,默认为true 阅读全文
posted @ 2020-05-26 21:32 怒吼的萝卜 阅读(8332) 评论(0) 推荐(1) 编辑
摘要: 调用代码如下 JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance(); Client client = dcf.createClient(PropertiesUtil.getValue("sms.requrl") 阅读全文
posted @ 2020-05-26 21:23 怒吼的萝卜 阅读(2329) 评论(0) 推荐(0) 编辑
摘要: 当我们使用CXF动态客户端调用WebService接口容易出现如下问题:命名空间问题 Exception in thread "main" org.apache.cxf.common.i18n.UncheckedException: No operation was found with the n 阅读全文
posted @ 2020-05-26 21:13 怒吼的萝卜 阅读(1554) 评论(0) 推荐(0) 编辑
摘要: @XmlRootelement 指定根目录。 //标注在实体类上 @XmlRootElement(name = "xmlEntity") public class XmlEntity{ ………… } @XmlType 将类或枚举类型映射到 XML 模式类型,配合如下属性使用: name 属性在你不想 阅读全文
posted @ 2020-05-24 00:16 怒吼的萝卜 阅读(4350) 评论(0) 推荐(0) 编辑
摘要: 下载路径: http://yd01.siweidaoxiang.com:8070/jmeter_52z.com.zip 配置汉化中文: 找到jmeter的安装目录:打开 \bin\jmeter.properties 文件 修改37行,去掉# 改为 language=zh_CN 压力测试 启动 jme 阅读全文
posted @ 2020-05-20 18:01 怒吼的萝卜 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 依赖引入 引入依赖jar包 <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http</artifactId> <version>3.1.11</version> </dependency> < 阅读全文
posted @ 2020-05-13 21:48 怒吼的萝卜 阅读(15850) 评论(1) 推荐(0) 编辑
摘要: 配置WebService前需要以下依赖jar包 #版本只供参考,具体看项目 <dependency> <grouId>org.apache.cxf</grouId> <artifactId>cxf-rt-frontend-jaxws</artifactId> <version>3.1.6</vers 阅读全文
posted @ 2020-05-13 21:38 怒吼的萝卜 阅读(1715) 评论(0) 推荐(0) 编辑
摘要: 首先推荐webservice文章不错的博主:https://www.iteye.com/blog/yufenfei-1685249 这位博主主要讲了WebService的CXF的jar包运用,很实用 @WebService 1、serviceName: 对外发布的服务名,指定 Web Service 阅读全文
posted @ 2020-05-13 20:25 怒吼的萝卜 阅读(2227) 评论(0) 推荐(0) 编辑
摘要: 未设置下的Eureka平台 可以看到Status显示的是 计算机名称! 解决方法: 在每一个需要注册的服务配置内加上如下几行配置 instance: prefer-ip-address: true #true表示使用ip地址注册 instance-id: user-server #指定服务的id(S 阅读全文
posted @ 2020-05-13 20:11 怒吼的萝卜 阅读(2553) 评论(0) 推荐(0) 编辑
摘要: Feign默认的使用jackson解析,所以时间传值时会报错,时间格式错误 解决办法: 修改feign解析方式为fastjson方式: @Configuration public class CxfConfig{ @Bean public Encoder feignEncoder(){ return 阅读全文
posted @ 2020-04-26 23:53 怒吼的萝卜 阅读(1732) 评论(0) 推荐(0) 编辑
摘要: 对象传参: #使用@RequestBody来指定传参对象 @RequestMapping(value = "/v2/matterCode/genCode", method = RequestMethod.POST) ResultResponse<String> getCode(@RequestBod 阅读全文
posted @ 2020-04-26 23:21 怒吼的萝卜 阅读(6124) 评论(0) 推荐(0) 编辑
摘要: 1. Feign调用接口不稳定报错 Caused by: java.net.SocketException: Software caused connection abort: recv failed at java.net.SocketInputStream.socketRead0(Native 阅读全文
posted @ 2020-04-26 23:02 怒吼的萝卜 阅读(6560) 评论(0) 推荐(0) 编辑
摘要: 报错信息: org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.Web 阅读全文
posted @ 2020-04-26 22:35 怒吼的萝卜 阅读(3424) 评论(0) 推荐(0) 编辑
摘要: 报错信息如下: org.springframework.beans.factory.BeanCreationNotAllowedException: Error creating bean with name 'eurekaAutoServiceRegistration': Singleton be 阅读全文
posted @ 2020-04-26 22:25 怒吼的萝卜 阅读(5442) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页