-1

oauth2所以我在工作时遇到了麻烦spring-boot.1.3.1.RELEASE

spring-boot使用spring 4.2.4spring-security-oauth2.2.0.8使用旧4.0.9版本。

这是一个项目,一旦添加依赖项maven,我就无法启动,因为它报告tomcatspring-security-oauth2

No class definition error
Caused by: java.lang.NoClassDefFoundError: org/springframework/context/event/GenericApplicationListener

依赖层次结构看起来像附加的图像。

有没有办法让它们一起工作,或者我必须恢复到旧spring-boot版本?

依赖层次

4

1 回答 1

0

好的,所以我通过定义我的项目结构parent的父级来解决它POM

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.3.1.RELEASE</version>
</parent>

以前,我的maven结构完全基于spring-boot-starter-webspring-security-oauth2依赖关系。

于 2015-12-30T15:58:11.233 回答