禁用Eclipse update index

用Eclipse构建Maven项目后,默认每次打开Eclipse都会update index,这会占用大量资源,让电脑非常卡。其实update index就是自动更新而已,可以关闭这个功能,在运行Maven项目时再更新就行了,不用每次打开Eclipse就更新。

关闭方法:

Window ----> Preferences ---> Maven ---> 取消勾选Download repository index updates on startup

时间: 2024-10-16 00:48:47

禁用Eclipse update index的相关文章

(转载)解决eclipse安装maven的问题:Unable to update index for central|http://repo1.maven.org/maven2

问题产生如下:因为单位使用了过滤,访问Internet时,超过10M的内容就拒绝.因为maven插件在初始时,需要下载Maven的index文件,这个文件比较大,有38M多,下载不成功.所以造成使用Maven添加依赖项时(Add Dependency)时,没有提示项目可用,并且在Console中,输出:Unable to update index for central|http://repo1.maven.org/maven2 . 解决方式如下:1.通过其它方式下载如下两个文件:http://

[转]使用Maven添加依赖项时(Add Dependency)时,没有提示项目可用,并且在Console中,输出: Unable to update index for central|http://repo1.maven.org/maven2 。

使用Maven添加依赖项时(Add Dependency)时,没有提示项目可用,并且在Console中,输出: Unable to update index for central|http://repo1.maven.org/maven2 . 解决方式如下: 1.通过其它方式下载如下两个文件: http://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties http://repo1.maven.org/m

Unable to update index for central

Unable to update index for central http://repo1.maven.org/maven2/ 就是这句,myeclipse启动后控制台输出这句话:解决办法:1.在myeclipse3.4(我用的这个版本)里面Window => Preferences => Myeclipse Enterprise Workbench => Maven4Myeclipse => Maven=>禁用Download repository index upda

解决MyEclipse开启后总是不停的在Update index

最近MyEclipse开启之后总是不停的在 update index,很是耗时间, 查找资料发现Update index...是Maven在不断更新, 解决办法如下: Window --> Preferences --> Myeclipse --> Maven4Myeclipse --> 去除Download repository index updates on startup前的勾选即可 版权声明:本文为博主原创文章,未经博主允许不得转载.

How to change value of Read time out of Eclipse Update Manager?

issue:I have slow internet connection and I cannot install any plugin, because Eclipse's Update manager throws me exception: ava.net.SocketTimeoutException: Read timed outat java.net.SocketInputStream.socketRead0(Native Method)at java.net.SocketInput

如何禁用Eclipse的Validating

使用Eclipse开发项目,在加载项目.刷新项目.修改了某个代码的时候,经常出现Eclipse正在Validating的提示.项目比较大文件(js)较多的情况下,甚至出现Validating几分钟的盛况.在这几分钟内,性能较差的电脑几乎出现鼠标停滞屏幕僵化的景象,叫天不应叫地不灵.对于偶等惜时如金的江湖码农而言,此举实在严重影响积极性,消耗人力物力.长此以往,会带来建设XX主义的步伐被糊里糊涂滞后的严重后果. 在刚开始几分钟的等待过程中,很多江湖好汉以为这是Eclipse的固有顽疾,无药可医.因

[MongoDB] Query, update, index and group

/* 1. Query Operators */ db.posts.find({ viewsCount: {$get: 1000, $lte: 3000} }, {_id: 0, viewsCount: 1, title: 1}) // $in db.posts.find({ categories: {$in: ['ios']} }, {categories: 1}) //$where db.posts.find({ $where: function(){ return this.categor

nexus repair或update index 没反应 手动配置nexus index

http://repo.maven.apache.org/maven2/.index/ 下载中心仓库最新版本的索引文件, 我们需要下载如下两个文件(一般在列表的末尾位置)    nexus-maven-repository-index.gz   nexus-maven-repository-index.properties 下面就是解压这个索引文件,虽然后缀名为gz,但解压方式却比较特别, 我们需要下载一个jar包indexer-cli-5.1.1.jar,我们需要通过这个特殊的jar来解压这个

eclipse里index.jsp头部报错的原因和解决方法

index.jsp的头<%@这句报错的话,是因为没有引入Tomcat的原因. 解决: A:Window---Preferences---server---RuntimeEnviroments--Add--Apache中选择对应版本的汤姆猫---引入外部汤姆猫的安装目录 B:对着工程---右键---Build Path---Configure Build Path---Libraries---Add Library---    Server Runtime---选中汤姆猫即可!