logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

VMware Workstation 15 Player 设置网络之桥接模式、VMware Workstation Pro 设置网络之 NAT 模式

    我的系统是 Windows 10,之前安装 VMWare Workstation 因为兼容性问题用不了,只好使用功能比较简单的 Player,看到网上比较多的都是 VMWare Workstation联网的教程,在此对 Player 联网过程做个记录。首先,先打开控制面板,查看自己正在使用的网络:接下来打开“虚拟机设置”:设置网络适配器,选择“桥接模

VMware Workstation 15 Player 设置网络之桥接模式、VMware Workstation Pro 设置网络之 NAT 模式

    我的系统是 Windows 10,之前安装 VMWare Workstation 因为兼容性问题用不了,只好使用功能比较简单的 Player,看到网上比较多的都是 VMWare Workstation联网的教程,在此对 Player 联网过程做个记录。首先,先打开控制面板,查看自己正在使用的网络:接下来打开“虚拟机设置”:设置网络适配器,选择“桥接模

微服务商城系统(十四)微信支付

文章目录一、支付微服务1、微信支付 API2、HttpClient 工具类3、支付微服务搭建二、微信支付二维码生成三、检测支付状态一、支付微服务1、微信支付 API    微信支付提供了 SDK 和 Demo(然而我并没有找到 sdk,可能微信团队已经把它上传到 Maven 中了):使用微信支付SD,在 common 工程的 pom.xml 中中引入依赖&l

解决 Spring Boot 中使用 Servlet 通过 @WebFilter 指定过滤路径指定路径不起作用 对所有路径进行拦截

文章目录一、问题描述二、解决方法一、问题描述在 Spring Boot 工程中使用过滤器:// 过滤器@WebServletpublic class MyFilter implements Filter {@Override// 在系统启动时就会执行public void init(FilterConfig filterConfig) throws ServletException {System

解决错误:Consider defining a bean of type ‘xxxrService‘ in your configuration

文章目录一、问题描述二、解决方法一、问题描述    运行 SpringBoot 启动类,报错:    可以看到,它是说 WeiXinPayController 中,用到了 OrderService ,但是呢,Spring 扫描不到。二、解决方法    其实可以看出来, WeiXi

解决 Spring Boot 启动类报错 xxx that could not be found. The injection point has the follow.The injection

文章目录一、问题描述二、解决方法一、问题描述     运行 SpringBoot的启动类时报错,错误详情:APPLICATION FAILED TO STARTDescription:Field idWorker in com.changgou.goods.service.impl.SpuServiceImpl required a bean of type

解决 SpringBoot 整合 Elasticsearch 报错:Set fielddata=true on [xxxx] in order to load fielddata in......

文章目录一、问题描述二、解决方法一、问题描述使用 SpringBoot 整合 Elasticsearch 时,运行程序,报错:二、解决方法    出现这种情况,是因为修改了代码,而在进行搜索后,没有将 ESClient 进行重启,这样,再一次进行搜索的时候,使用的还是同一个 ESClient,就会导致重复的聚合名称出现。   &

到底了