运行spring boot应用报错:无法实例化接口org.springframework.context.ApplicationListener
Posted
技术标签:
【中文标题】运行spring boot应用报错:无法实例化接口org.springframework.context.ApplicationListener【英文标题】:Run spring boot application error: Cannot instantiate interface org.springframework.context.ApplicationListener 【发布时间】:2016-06-21 00:49:09 【问题描述】:我有一个 spring 项目并尝试让它使用 spring boot 并在嵌入的 tomcat 上运行:
https://spring.io/guides/gs/rest-service/
这是我的应用程序
//@Configuration
//@EnableAspectJAutoProxy
@SpringBootApplication
@ComponentScan(basePackages = "gux.prome")
public class Application
public static void main(String[] args)
SpringApplication.run(Application.class, args);
如果我使用maven命令:mvn spring-boot:run
,项目启动正常,但我需要调试,所以我在InteliJ运行这个main方法,出现异常:
Exception in thread "main" java.lang.IllegalArgumentException: Cannot instantiate interface org.springframework.context.ApplicationListener : org.springframework.boot.logging.ClasspathLoggingApplicationListener
at org.springframework.boot.SpringApplication.createSpringFactoriesInstances(SpringApplication.java:414)
at org.springframework.boot.SpringApplication.getSpringFactoriesInstances(SpringApplication.java:394)
at org.springframework.boot.SpringApplication.getSpringFactoriesInstances(SpringApplication.java:385)
at org.springframework.boot.SpringApplication.initialize(SpringApplication.java:263)
at org.springframework.boot.SpringApplication.<init>(SpringApplication.java:237)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1191)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1180)
at gux.prome.config.Application.main(Application.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134)
Caused by: java.lang.NoClassDefFoundError: org/springframework/context/event/GenericApplicationListener
....
这是 pom:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>gux</groupId>
<artifactId>prome-data</artifactId>
<version>1.0-SNAPSHOT</version>
<name>prome-data Maven Webapp</name>
<url>http://maven.apache.org</url>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.3.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
<!-- end of guava -->
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.9.2</version>
</dependency>
</dependencies>
<properties>
<java.version>1.7</java.version>
</properties>
<build>
<finalName>prome-data</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<!--<plugin>-->
<!-- use java 7 -->
<!--<artifactId> maven-compiler-plugin</artifactId>-->
<!--<version>3.1</version>-->
<!--<configuration>-->
<!--<source> 1.7</source> -->
<!--<target> 1.7</target>-->
<!--</configuration>-->
<!--</plugin>-->
</plugins>
</build>
<!--<repositories>-->
<!--<repository>-->
<!--<id>spring-releases</id>-->
<!--<url>http://repo.spring.io/libs-release</url>-->
<!--</repository>-->
<!--</repositories>-->
<!--<pluginRepositories>-->
<!--<pluginRepository>-->
<!--<id>spring-releases</id>-->
<!--<url>http://repo.spring.io/libs-release</url>-->
<!--</pluginRepository>-->
<!--</pluginRepositories>-->
</project>
【问题讨论】:
你查了吗***.com/questions/31489947/… 【参考方案1】:这是您的 Spring 依赖项中某处 版本不匹配的症状,但不一定只是 Spring Boot 和 Spring 本身。我的 Spring Boot 父母之间有这个:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.5.RELEASE</version>
<relativePath></relativePath>
</parent>
还有我的 Spring Cloud Config 依赖:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-client</artifactId>
<version>1.0.4.RELEASE</version>
</dependency>
由于某种原因,如果没有明确的版本声明,我无法定义 spring-cloud-config-client 依赖项。
同时更新到最新版本(1.3.5.RELEASE 和 1.1.1.RELEASE)解决了这个问题。
结论将你的依赖更新到最新的正确的
【讨论】:
就我而言,所有内容都有相同的版本。唯一的问题是,当版本在 pom 中更新时,IDE 仍然缓存了旧版本(提示这是同一个项目适用于我所有的同事,而不是我)。因此,当检查 IntelliJ 中的模块设置时,它向我显示了旧版本和新版本。不得不手动删除旧的,问题得到解决。 :) 我正在导入其他具有 springframework 的依赖项。我必须添加对于那些使用 Gradle 的人,我解决了这个问题,将我的库和主项目中的 Spring Boot Gradle 插件的版本设置为相同的值:
plugins
id("org.springframework.boot") version "2.2.2.RELEASE"
【讨论】:
【参考方案3】:我遇到了同样的错误,我只是更改了 spring boot parent 的发布版本,现在一切正常
【讨论】:
应该注释否则详细解释。以上是关于运行spring boot应用报错:无法实例化接口org.springframework.context.ApplicationListener的主要内容,如果未能解决你的问题,请参考以下文章
在 Wildfly 中部署的 Spring Boot 应用程序“无法实例化 WebApplicationInitializer 类”
当我尝试使用 Hibernate ogm 和 spring boot 时,控制台给出“无法实例化命名策略类”错误