logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

java.net.UnknownHostException

 现象: 原因:java在选择协议时,会优先选择IPV6协议;若IPV6协议不可使用,那么访问不能通过;(在java程序中访问外网地址时,若在程序中不能访问,而在浏览器中可以访问,那么有可能是协议问题); 解决方案: 在java虚拟机运行环境设置中添加如下参数配置:-Djava.net.preferIPv4Stack=true ...

#java
linux docker 安装 unable to prepare context: unable to evaluate symlinks in Docker

unable to prepare context: unable to evaluate symlinks in Dockerfile path  现象: #docker build -t docker-whale .unable to prepare context: unable to evaluate symlinks in Dockerfile path: GetFil...

#linux#docker
在github上创建新分支

在github上创建仓库:Create a new repository on the command linetouch README.mdgit initgit add README.mdgit commit -m "first commit"git remote add origin https://github.com/BrentHuang/MyRepo.gitgit

#github
github上的版本和本地版本冲突的解决方法

 错误: 原因:  github 本地readme文件和远程的冲突 解决方案:  git push -u origin 分支名 -f  参考:  https://blog.csdn.net/shiren1118/article/details/7761203...

到底了