我是Spring的新手。在我的主类中使用ApplicationContext时,我收到以下错误
the type org.springframework.core.NestedRuntimeException cannot be resolved.It is indirectly referenced from required .class files
我正在使用Spring 4.3.7和maven.Please帮助
答案 0 :(得分:2)
我遇到了同样的问题,因为我的本地存储库已损坏。我手动删除了本地存储库并强制maven再次下载
答案 1 :(得分:1)
只需转到您的.m2文件夹,即可在其中下载依赖项(springframework)并手动将其删除。 然后再次将依赖项粘贴到pom.xml文件中并保存。但是请通过稳定的Internet连接来实现。
答案 2 :(得分:0)
我只是使用弹簧靴...它使弹簧开始更容易。发生该错误是因为您没有在您的类路径中拥有所有正确的jar,例如添加到maven / gradle / buildpath文件:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>4.3.7.RELEASE</version>
</dependency>
答案 3 :(得分:0)
最好对所有spring-jar使用相同的Spring框架依赖版本。