解决eclipse maven插件 add dependencies搜索不到spring-webmvc的问题

今天在Eclipse配置Spring框架时发现不能在Eclipse的pom.xml->Dependencies->Add...加载spring-webmvc的框架

在此处输入spring-webmvc没有反应,只有本地的包能搜索到。

解决方案:

1.Windows->Preferences

.解决eclipse maven插件 add dependencies搜索不到spring-webmvc的问题_第1张图片

在User Settings标题所示的目录下创建setting.xml,里面的内容为:


    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
   
       
            Nexus
            Nexus Public Mirror
            http://121.42.166.202:8081/nexus/content/groups/public
            central
       

   

   
       
            dev
           
               
                    Nexus
                    http://121.42.166.202:8081/nexus/content/groups/public
                   
                        true
                        always
                        warn
                   

                   
                        true
                        never
                        fail
                   

               

           

           
               
                    Nexus
                    http://121.42.166.202:8081/nexus/content/groups/public
                   
                        true
                        warn
                   

                   
                        true
                        fail
                   

               

           

           
       

   

   
        dev
   

2.创建完毕后,去勾选

这一个条目

具体位置如下:

解决eclipse maven插件 add dependencies搜索不到spring-webmvc的问题_第2张图片

3.Apply and Close后,按alt+f5重构项目

解决eclipse maven插件 add dependencies搜索不到spring-webmvc的问题_第3张图片

把重构的项目勾上就行,然后就需要等待一下,时间后有些长,我大概花了5分钟左右,才完成。

下方有两个参考的帖子:

https://blog.csdn.net/my13413527259/article/details/78367180

http://www.cnblogs.com/ClassNotFoundException/p/6262445.html?utm_source=itdadao&utm_medium=referral

你可能感兴趣的:(解决eclipse maven插件 add dependencies搜索不到spring-webmvc的问题)