IDEA导入Spring jar包出现: Cannot resolve symbol 'ApplicaitionContext' 的问题

初学Spring框架,在IDEA中创建了Maven项目,需要导入Spring的jar包:

  1. commons-logging
  2. spring-beans
  3. spring-context
  4. spring-core
  5. spring-expression
  6. log4j

具体方法见上一篇博文:Spring快速入门

首先确保依赖添加正确,我的pom.xml文件配置如下:

>
    >
      >junit>
      >junit>
      >4.11>
      >test>
    >
    >
      >org.springframework>
      >spring-core>
      >5.2.0.RELEASE>
    >
    >
      >org.springframework>
      >spring-context>
      >5.2.0.RELEASE>
    >
    >
      >org.springframework>
      >spring-expression>
      >5.2.0.RELEASE>
    >
    >
      >org.springframework>
      >spring-beans>
      >5.2.0.RELEASE>
    >
    >
      >commons-logging>
      >commons-logging>
      >1.2>
    >
    >
      >log4j>
      >log4j>
      >1.2.17>
    >

使用ApplicaitionContext接口创建Spring工厂时候出现了问题,如题:Cannot resolve symbol ‘ApplicaitionContext’ 。一步步排查问题发现是因为本地的类没有包含到spring-context-5.2.0.RELEASE.jar包,原因不详…
IDEA导入Spring jar包出现: Cannot resolve symbol 'ApplicaitionContext' 的问题_第1张图片
于是乎手动将spring-context-5.2.0.RELEASE.jar拷贝过去,问题成功解决!!!

你可能感兴趣的:(Java基础)