【spring1.00】jar包都正确,出现Error:(10, 30) java: 无法访问org.springframework.beans.factory.BeanNameAware 找不到

【bug】Error:(10, 30) java: 无法访问org.springframework.beans.factory.BeanNameAware
找不到org.springframework.beans.factory.BeanNameAware的类文件

但是检查后各类jar包都在

所以有可能是因为,

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-beans</artifactId>
    <version>${spring.version}</version>
    <scope>test</scope><!--限制范围不正确-->
</dependency>

删除 <scope>test</scope> 这行就好了

猜你喜欢

转载自blog.csdn.net/mdllll/article/details/107691214