从零搭建springboot项目(1)

大憨熊 提交于 2020-03-01 06:06:20

eclipse无法连上maketplace,报错网络连接不上。
通过marketplace安装插件必须通过代理链接,而默认是直连,因此需要更改eclipse network connection方式为 manual,并勾上所有代理。如下:
在这里插入图片描述
接着重启eclipse,打开marketplace即可正常访问。
有另一种情况,即打开market后无反应,这种情况需要重新安装epp MarketPlace,具体方法为:
help–>install new software

地址栏输入一下连接:

http://download.eclipse.org/mpc/photon/

安装完成后 重启Eclipse即可打开MarketPlace:
在这里插入图片描述

另外一种情况,下载总是失败,需要修改eclipse.ini超时时间:

eclipse.ini文件内容如下

-startup
plugins/org.eclipse.equinox.launcher_1.3.201.v20161025-1711.jar
–launcher.library
C:/Users/10214/.p2/pool/plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.401.v20161122-1740
-product
org.eclipse.epp.package.jee.product
–launcher.defaultAction
openFile
-showsplash
org.eclipse.platform
–launcher.appendVmargs
-vmargs
-Dosgi.requiredJavaVersion=1.8
-XX:+UseG1GC
-XX:+UseStringDeduplication
-Dosgi.requiredJavaVersion=1.8
-Xms256m
-Xmx1024m
-Declipse.p2.max.threads=10
-Doomph.update.url=http://download.eclipse.org/oomph/updates/milestone/latest
-Doomph.redirection.index.redirection=index:/->http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/

auncher.library这个表示下载路径,这里可以下载失败后用下载软件下载失败的jar包等,然后拷贝到此目录,已经有了不会重复下载。

还有在最后添加超时时间

-Dorg.eclipse.equinox.p2.transport.ecf.retry=15
-Dorg.eclipse.ecf.provider.filetransfer.retrieve.closeTimeout=30000
-Dorg.eclipse.ecf.provider.filetransfer.retrieve.readTimeout=30000
-Dsun.net.client.defaultReadTimeout=30000
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!