0%

BUG和WO只能留一个

hexo

  1. hexo d失败
  • 报错:

    1
    unable to access 'https://github.com/0Jmins0/Jmins0.github.io.git/': Failed to connect to 127.0.0.1 port 7890 after 2069 ms: Connection refuse`
  • 解决

    • 取消代理:

      1
      2
      git config --global --unset http.proxy
      git config --global --unset https.proxy
    • 设置代理

      1
      2
      git config --global http.proxy http://127.0.0.1:7890
      git config --global https.proxy http://127.0.0.1:7890
  1. sprint boot 实现身份验证时返回 403

    • 报错

      authenticate = authenticationManager.authenticate(authenticationToken);

      一直卡在这句话,一直找验证哪里的问题,用户名或者密码的错误

    • 解决

      验证失败也有可能是数据库方面的错误,比如mysql不分大小写,在 pojo里面写变量的时候,一定要都是小写的。