第一种,你repository下面对应的文件删除(可能是因为下载不完全导致错误,概率比较低的错误),重新下载(对pom.xml install一下就好)。
第二种方式,<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<webResources>
<resource>
<directory>src/main/webapp/WEB-INF</directory>
<filtering>true</filtering>
<targetPath>WEB-INF</targetPath>
</resource>
</webResources>
</configuration>
</plugin>
在pom文件中加入上面的插件
1、当更换ES版本后,可能需要更新项目中的pom文件中的ES依赖项,以确保项目能够正确引用新版本的ES。2、如果在更新pom文件后仍然出现引入失败的情况,可能是由于其他原因导致的,如网络连接问题、依赖项冲突等。建议检查pom文件中的依赖项是否正确,以及排除其他可能的问题,以解决引入失败的问题。ES(Elasticsearch)是一种基于Lucene的分布式搜索引擎,具有高效、可扩展、全文搜索等特点,被广泛应用于企业搜索、日志分析、数据挖掘等领域。
一、pom.xml报错类似:Missing artifact org.springframework:spring-jdbc:jar:3.2.4.RELEASE 这样的错误,提示某个jar包没有了。
这个问题之前碰见好几次了,每次解决了下一次又忘了,特意记下来。
解决办法是:右键项目,选择maven,选择update project,除默认选择外,再勾选Force Update of Snapshots/Releases,点击ok,等待maven依赖更新。
二、SpringBoot启动报错-Due to missing ServletWebServerFactory
更新2019.6.24
2019-06-24 14:09:15.039 INFO 17356 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.amqp.rabbit.annotation.RabbitBootstrapConfiguration' of type [org.springframework.amqp.rabbit.annotation.RabbitBootstrapConfiguration$$EnhancerBySpringCGLIB$$6d407ba3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-06-24 14:09:15.592 WARN 17356 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Unable to start web servernested exception is org.springframework.context.ApplicationContextException: Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean.
查看ServletWebServerFactory类,发现其引用了org.apache.catalina包下的文件,
然后查看已经被引入的jar包,发现没有这个包。
解决办法,添加如下依赖即可:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
注:网上一些文章里说的tomcat-embed包下为空的问题,跟我这个问题有所不同。我这是没有引入spring-boot-starter-web依赖,导致没有正确引入tomcat相关的包,而不是依赖冲突或者其他问题。
三、未完待续..
以后如果遇到有关maven报错的问题还会记到这里来。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)