hexo
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
2git config --global --unset http.proxy
git config --global --unset https.proxy设置代理
1
2git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
sprint boot实现身份验证时返回 403报错
authenticate = authenticationManager.authenticate(authenticationToken);一直卡在这句话,一直找验证哪里的问题,用户名或者密码的错误
解决
验证失败也有可能是数据库方面的错误,比如
mysql不分大小写,在pojo里面写变量的时候,一定要都是小写的。