踩坑:Invalid character found in method name. HTTP method names must be tokens

一、原因

        在进行本地小程序与服务端请求时,由于加了签名认证,访问接口时报错

Spring boot端

踩坑:Invalid character found in method name. HTTP method names must be tokens_第1张图片

小程序端

 

二、解决方案

2.1  更改访问路径

  •  将https:更换成http:

示例:https://localhost:8080  改为  http://localhost:8080

2.2其他原因

  1.      ssl证书到期了
  2. Tomcat的header缓冲区大小不够

参考链接   

      3.修改端口号

server.xml中加上maxHttpHeaderSize="8192"  

你可能感兴趣的:(踩坑与思考,http,网络协议,网络,spring,boot,微信小程序)