上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 61 下一页
摘要: SoapUI 调WebService 报 No running communication point is configured to process this request. 错误 检查入参是否有特殊符号 <soap:Envelope xmlns:soap="http://www.w3.org 阅读全文
posted @ 2021-08-04 22:28 VipSoft 阅读(644) 评论(0) 推荐(0)
摘要: 开始提示 鼠标点到类名称上面,Alt+Enter 或者 通过小灯泡提示,点击生成 serialVersionUID 阅读全文
posted @ 2021-07-27 12:50 VipSoft 阅读(110) 评论(0) 推荐(0)
摘要: Vue打包发布Tomcat、Ngins,F5 刷新报错404解决方法 - VipSoft - 博客园 在Nginx配置文件nginx.conf中加入如下配置。(index.html根据实际页面配置) 增加:try_files $uri $uri/ /index.html; #解决页面刷新404问题 阅读全文
posted @ 2021-07-24 21:33 VipSoft 阅读(2047) 评论(2) 推荐(1)
摘要: 项目中,两个模块中都放了 Mapper,如下所示 @MapperScan(basePackages ={"com.vipsoft.his.mapper","com.vipsoft.his.sdfyy.mapper"} ) 为了方便,两个合成了一个, @MapperScan(basePackages 阅读全文
posted @ 2021-07-20 16:54 VipSoft 阅读(402) 评论(0) 推荐(0)
摘要: npm set registry https://registry.npm.taobao.org npm set disturl https://npm.taobao.org/dist npm cache clean --forcenpm i -g cnpm --registry=https://r 阅读全文
posted @ 2021-07-19 23:27 VipSoft 阅读(396) 评论(0) 推荐(0)
摘要: 解决步骤:1、执行netsh int tcp show global 查看默认TCP全局参数等相关设置 Windows 2012 默认ECN 功能是开启的,将其关闭即可 以管理员的身份运行下列命令:netsh int tcp set global ecncapability=disabled 【网络 阅读全文
posted @ 2021-07-15 22:32 VipSoft 阅读(618) 评论(0) 推荐(0)
摘要: SpringBoot WebService 源代码:https://gitee.com/VipSoft/VipWebService SpringBoot WebService 及 注意项: https://chuna2.787528.xyz/vipsoft/p/14993568.html 服务端添加拦截 阅读全文
posted @ 2021-07-10 18:24 VipSoft 阅读(377) 评论(0) 推荐(0)
摘要: SpringBoot WebService 源代码:https://gitee.com/VipSoft/VipWebService SpringBoot 版本 <version>2.3.0.RELEASE</version> <cxf.version>3.3.1</cxf.version> <dep 阅读全文
posted @ 2021-07-10 12:21 VipSoft 阅读(619) 评论(0) 推荐(0)
摘要: SpringBoot WebService 源代码:https://gitee.com/VipSoft/VipWebService SpringBoot 整合 WebService cxf 报错 Consider revisiting the entries above or defining a 阅读全文
posted @ 2021-07-09 22:31 VipSoft 阅读(236) 评论(0) 推荐(0)
摘要: Mac /System/Library/Frameworks/JavaVM.framework/Home/bin/java: No such file or directory 查找JAVA_HOME 打开Mac的终端,检查JDK是否安装成功:java -version 查看java指令所在的目录: 阅读全文
posted @ 2021-07-09 14:39 VipSoft 阅读(2549) 评论(0) 推荐(0)
摘要: jimmy@MacBook-Pro bin % wsdl2java http://www.webxml.com.cn/WebServices/IpAddressSearchWebService.asmx?wsdl zsh: no matches found: http://www.webxml.co 阅读全文
posted @ 2021-07-08 20:59 VipSoft 阅读(824) 评论(0) 推荐(0)
摘要: 在不改程序的情况下,修改 sql 时,需要将 Mapper 中的 XML 文件 放到外面 mybatis: mapper-locations: classpath:mapper/*.xml #JAR 包里面 mybatis: mapper-locations: file:mapper/*.xml # 阅读全文
posted @ 2021-07-08 15:09 VipSoft 阅读(1744) 评论(4) 推荐(0)
摘要: @Component public class NettyClient implements ApplicationContextAware { NettyClientHandler nettyClientHandler; /** * 当前 ApplicationContent 后面注入用 */ p 阅读全文
posted @ 2021-06-24 09:35 VipSoft 阅读(98) 评论(0) 推荐(0)
摘要: 以下是伪代码 方法一 前后代码省略 //绑定服务器,该实例将提供有关IO操作的结果或状态的信息 ChannelFuture channelFuture = bootstrap.bind(); this.serverChannel = channelFuture.channel(); //给cf 注册 阅读全文
posted @ 2021-06-23 19:12 VipSoft 阅读(4412) 评论(0) 推荐(0)
摘要: Maven 引用jar包冲突 ,Intellij 查找排除JAR包的依赖关系(Maven Helper) <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</ar 阅读全文
posted @ 2021-06-12 11:46 VipSoft 阅读(492) 评论(0) 推荐(0)
摘要: 监听服务的四种实现方式,以监听 Nacos 服务为例 1. 传统方式 public void subscribe() { try { NamingService namingService = NamingFactory.createNamingService("127.0.0.1:8848"); 阅读全文
posted @ 2021-06-11 14:57 VipSoft 阅读(3849) 评论(0) 推荐(0)
摘要: Kubernetes(K8S) 常用命令 Kubernetes(K8S) 常用命令 Docker 容器中镜像导出/导入 Docker 常用命令 systemctl restart docker #重启 Docker docker images #查看镜像文件 REPOSITORY #镜像的仓库源 T 阅读全文
posted @ 2021-05-31 16:26 VipSoft 阅读(124) 评论(0) 推荐(0)
摘要: 将文件传到Linux 服务器/opt 目录中 http://nginx.org/download/nginx-1.20.1.tar.gz 安装 # 如果已安装,忽略 yum -y install gcc make zlib-devel gcc-c++ libtool openssl openssl- 阅读全文
posted @ 2021-05-31 15:12 VipSoft 阅读(256) 评论(0) 推荐(0)
摘要: 【不建议使用 Docker 的形式部署,后期添加端口映射很麻烦】 安装 Nginx # 获取nginx 镜像 docker pull nginx:1.20 # 运行容器(用于复制文件到宿主机做映射) docker run -d --name nginx nginx:1.20 #创建宿主机目录,用于映 阅读全文
posted @ 2021-05-31 13:23 VipSoft 阅读(664) 评论(0) 推荐(0)
摘要: <spring-cloud-openfeign.version>2.2.6.RELEASE</spring-cloud-openfeign.version>对应的SpringBoot<version>2.3.0.RELEASE</version> <dependency> <groupId>org. 阅读全文
posted @ 2021-05-28 16:30 VipSoft 阅读(1082) 评论(0) 推荐(1)
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 61 下一页