https://www.cnblogs.com/EasonJim/p/6674099.html

1、全局设置

【Windows】->【Preferences】->【Maven】->勾选【Download respository index updates on startup】

完成后重启eclipse,然后等待下载更新完即可。

2、单独设置

【Windows】->【Show View】->【Others】->【Maven】->【Maven Repositories】

然后在下方的【Maven Repositories】窗口中定位到【Global Repositories】,找到【central(http://repo.maven.apache.org/maven2)】,右键选择【Update Index】

总结:

推荐使用全局设置,如果网速不行,那么就单独配置,有需要时再更新。

经过测试,在Mac下的菜单可能和Windows不太一样,只要找对窗口即可。

关于修改central地址的问题:

我觉得这个没必要修改,全局固定是指向官方的公共仓库,而通过项目上指定了相关私有仓库,在通过上面工具搜索时,会按顺序进行查找。主要的还是项目上的pom.xml的配置问题。

https://my.oschina.net/xldc/blog/653911

很久没用过Eclipse的m2e插件Add jar功能了,主要是没有提示功能,只显示本地已经有的jar包,其他都提示“Artifact Id cannot be empty”,今天梳理项目时偶然看到一篇博文http://www.tuicool.com/articles/VFJBryE,终于可以用了。

首先,更改maven中央库地址,自带的总是有点问题,当然不论哪个,好像都下载不了beetl2.2.5,@闲大富

<mirror>
<id>mvnrepository.com</id>
<mirrorOf>central</mirrorOf>
<name>mvnrepository.com</name>
<url>http://central.maven.org/maven2</url>
</mirror>

亲测阿里仓库可用2016年10月28日

    <mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>

接着就是对Eclipse的调教:

1、Window->Preferences->Maven,勾选如下两个框

2、Windows->Show View->Other...->Maven->选 Maven Repositories,OK,如图

3、然后在Maven Repositories->Global Repositories对中央库,右键,选择Rebuile Index,重建索引,耐心等待,之后就可以了,如图

使用Maven插件无法重建索引(Rebuild Full Index)的问题

2017年11月14日

问题产生如下: 
因为单位使用了过滤,访问Internet时,超过10M的内容就拒绝。 
因为maven插件在初始时,需要下载Maven的index文件,这个文件比较大,有38M多,下载不成功。 
所以造成使用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/maven2/.index/nexus-maven-repository-index.gz

2、找一个Apache Tomcat服务器,在其根据目录下建立一个 /maven2/.index 的虚拟目录(注意: 如果你使用的是XP系统, 可能无法建立.index文件夹, 必须使用虚拟目录),把上述两个文件拷贝至该虚拟目录指向的目录下。

3、编辑 c:\WINDOWS\system32\drivers\etc\hosts 文件,在文件中加入: 
127.0.0.1    repo1.maven.org 
注:127.0.0.1 为步骤2的Apache Tomcat服务器IP地址。

4、在Eclipse中,打开 Maven Repositories 面板, 
在 Global Repositories --> central 项上,点右键,Rebuild Index 即可。

5、移除之前在 hosts 文件中添加的内容。

6、(可选)把Properties中Maven项的 Download repository index updates on starup 选项去除。

Eclipse使用Maven时出现:Index downloads are disabled, search results may be incomplete.问题解决的更多相关文章

  1. Index downloads are disabled, search results may be incomplete.

    20元现金领取地址:http://jdb.jiudingcapital.com/phone.html内部邀请码:C8E245J (不写邀请码,没有现金送) 国内私募机构九鼎控股打造,九鼎投资是在全国股 ...

  2. 【MAVEN】搜索错误“Index downloads are disabled,search results may be incomplete”

    出现上面这个错误,需要将Maven的索引下载到本地. 应用后,在Window -> Show View -> Other -> Maven -> Maven Repositor ...

  3. 解决eclipse部署maven时,src/main/resources里面配置文件加载不到webapp下classes路径下的问题

    解决eclipse部署maven时,src/main/resources里面配置文件加载不到webapp下classes路径下的问题. 有时候是src/main/resources下面的,有时候是sr ...

  4. 使用eclipse创建maven时遇到的问题

    转自https://www.cnblogs.com/hongmoshui/p/7994759.html   1.在eclipse中用maven创建项目,右键new>>Maven Proje ...

  5. Eclipse创建Maven时提示错误could not resolve archetype

    今天用Eclipse创建Maven多模块项目的时候提示错误: could not resolve archetype ******release from any of the configured ...

  6. Eclipse使用Maven时,修改默认中央仓库后的配置报错找不到包的问题解决

    一般在公司内容配置Maven时会在settings.xml文件下配置私服nexus地址,那么修改完之后在Eclipse中如果不指定用户目录级别的settings.xml文件会出现找不到包的问题. se ...

  7. eclipse导入maven时,html页面引入js的路径出现红色波浪线

    用eclipse导入一个springboot项目时,html页面引入js以及css时出现如下图所示情况,html页面用了 thymeleaf模板引擎.另外js文件与css文件路径也是正确无误的. 原来 ...

  8. eclipse导入maven时,pom文件的project一直报错(Failure to transfer org.apache.maven.plugins:maven-surefire-plugin:pom:2.12.)

    这里有两种解决办法. 一:右键项目->maven->update project勾选上Force Update of Snapshots/Releases然后ok就可以了. 二:如果第一种 ...

  9. Maven学习:Eclipse使用maven构建web项目(转)

    Maven学习:Eclipse使用maven构建web项目(转) 8.更改class路径:右键项目,Java Build Path -> Source 下面应该有4个文件夹.src/main/j ...

随机推荐

  1. Oracle exists 和not exists 用法详解

    有两个简单例子,以说明 “exists”和“in”的效率问题 1) select * from T1 where exists(select 1 from T2 where T1.a=T2.a) ; ...

  2. MySQL字符集与校对

    一.什么是字符集与校对 1.字符集与校对 字符集是指一种从二进制编码到某种字符符号的映射. 校队是指一组用于某个字符集的配许规则. 2.utf8与utf8mb4 标准的UTF-8字符集编码是可以使用1 ...

  3. Oracle与MySQL的SQL语句区别

    2 表 2.1 创建表(同) create table tableName( columnName1 int, columnName2 int ) 2.2 删除表(异) MySQL: drop tab ...

  4. eclipse server和tomcat的区别,将server的部署目录改到自己安装的tomcat中及如何设置tomcat用户

    转:http://www.cnblogs.com/Yogurshine/archive/2013/06/05/3118525.html 一.发现问题(如果不把项目部署到tomcat的webapp目录下 ...

  5. Cracking The Coding Interview2.4

    删除前面的linklist,使用node来表示链表 // You have two numbers represented by a linked list, where each node cont ...

  6. SQL-25 获取员工其当前的薪水比其manager当前薪水还高的相关信息

    题目描述 获取员工其当前的薪水比其manager当前薪水还高的相关信息,当前表示to_date='9999-01-01',结果第一列给出员工的emp_no,第二列给出其manager的manager_ ...

  7. spring boot 延长 Session 时间

    1.查看session时间    默认1800s 通过request.getSession().getMaxInactiveInterval()可以查看你的session时间 2.延长session ...

  8. oracle截取字符串区间段的一部分字符串

    Oracle SQL中实现indexOf和lastIndexOf功能,substr和instr用法 博客分类: oracle PL/SQL instrsubstrlastindexofindexofo ...

  9. L245

    The State Council will lay down new rules that aim to make management compatible with internationall ...

  10. Python 嵌套

    1 要yuanhao的首字母大写 li = [1,2,5,'taibai','yuanhao',[1,'alex',3,],True]li[4] = 'Yuanhao'print(li) li[4] ...