1. 程式人生 > >整合第三方框架,報錯NoSuchFieldError:logger

整合第三方框架,報錯NoSuchFieldError:logger

logger專案中使用springboot的版本是2.0.1.RELEASE,該版本依賴的spring版本為5.0.5.RELEASE(logger在spring版本5.0.7.RELEASE中),在專案中新增對應的spring-beans版本,問題解決了。

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-beans</artifactId>
    <version>5.0.5.RELEASE</version>
    <scope>compile</scope>
</dependency>