maven项目建好后 用update maven project 报错

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven项目建好后 用update maven project 报错相关的知识,希望对你有一定的参考价值。

Could not set the project description for 'PhysicalRes' because the project description file (.project) is out of sync with the file system.

去maven中央仓库找找你的那个dependencies存不存在,因为中央仓库也不是非常全的,如果不存在,肯定不错。不存在的话,你可以找找其他的插件库,配置一下仓库地址,或者下载相应的jar包文件,通过nexus工具手工维护上这个插件,这样就可以down到这个以来了。

1.项目右键:maven>install

2.项目右键:maven>clean

3.删除对应jar在仓库中的文件夹

4.在pom.xml中添加镜像地址:

<dependency>

<groupId></groupId>

<artifactId></artifactId>

<version></version>

</dependency>

参考技术A 首先,去maven中央仓库找找你的那个dependencies存不存在,因为中央仓库也不是非常全的,如果不存在,肯定不错。不存在的话,你可以找找其他的插件库,配置一下仓库地址,或者下载相应的jar包文件,通过nexus工具手工维护上这个插件,这样就可以down到这个以来了。 参考技术B 解决方法 :
1 右键点击项目名称 Maven -- 〉Disable maven nature
2 进入项目路径 mvn eclipse:clean
3 右键点击项目名称 Configure--〉Convert to maven Project

Maven项目下update maven后Eclipse报错

java.lang.ClassNotFoundException: ContextLoaderL



严重: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener

java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener

at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1678)

at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1523)

at org.apache.catalina.core.DefaultInstanceManager.loadClass(DefaultInstanceManager.java:415)

at org.apache.catalina.core.DefaultInstanceManager.loadClassMaybePrivileged(DefaultInstanceManager.java:397)

at org.apache.catalina.core.DefaultInstanceManager.newInstance(DefaultInstanceManager.java:118)

at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4660)

at org.apache.catalina.core.StandardContext$1.call(StandardContext.java:5226)

at org.apache.catalina.core.StandardContext$1.call(StandardContext.java:5221)

at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)

at java.util.concurrent.FutureTask.run(FutureTask.java:138)

at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)

at java.lang.Thread.run(Thread.java:662)

 

问题背景

工程为maven工程,ContextLoaderListener类位于spring-web-3.1.0.RELEASE.jar包中。检查了maven的pom.xml,依赖引入正常。在工程Maven Dependencies视图中也能看到spring-web-3.1.0.RELEASE.jar包被正常引入进来了。

 

错误原因:

进入到tomcat的部署路径.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\下检查了一下,发现工程部署后在WEB-INF文件夹下没有生成lib目录,正常情况下,会生成lib目录并把工程的所有依赖jar包都部署到该目录下。

 

解决方案:

1.右键点击项目--选择Properties

选择Deployment Assembly,在右边点击Add按钮,在弹出的窗口中选择Java Build Path Entries

 

2.点击Next,选择Maven Dependencies


 

3.点击Finish,然后可以看到已经把Maven Dependencies添加到Web应用结构中了

 


 

操作完后,重新部署工程,不再报错了。然后我们再到.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\目录下,发现工程WEB-INF目录下自动生成了lib目录,并且所有的依赖jar包也都已经部署进来。问题因此解决。


以上是关于maven项目建好后 用update maven project 报错的主要内容,如果未能解决你的问题,请参考以下文章

用Maven创建第一个web项目

idea 创建多模块依赖Maven项目

Maven项目下update maven后Eclipse报错

Maven项目下update maven后Eclipse报错:java.lang.ClassNotFoundException: ContextLoaderL

Maven项目下update maven后Eclipse报错

Maven项目下update maven后Eclipse报错:java.lang.ClassNotFoundException: ContextLoaderL