org.springframework.beans.factory.UnsatisfiedDependencyException , java.lang.Error: Unresolved compilation problems

org.springframework.beans.factory.UnsatisfiedDependencyException , java.lang.Error: Unresolved compilation problems

谁能告诉我,为什么会出现这个错误? 其实我不知道从哪里开始解决它。

Nov 19, 2016 10:20:30 AM org.apache.catalina.core.StandardContext listenerStart
SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'accessDeniedController' defined in file [D:\java-git-workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp2\wtpwebapps\wps\WEB-INF\classes\controller\AccessDeniedController.class]: Unsatisfied dependency expressed through constructor parameter 1: Error creating bean with name 'wpsManager' defined in ServletContext resource [/WEB-INF/classes/wpsContext.xml]: Cannot resolve reference to bean 'passwordManager' while setting constructor argument; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'passwordManager' defined in ServletContext resource [/WEB-INF/classes/userContext.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.greytip.wps.service.impl.PasswordManagerImpl]: Constructor threw exception; nested exception is java.lang.Error: Unresolved compilation problems: 
    The import org.springframework.security.context.SecurityContext cannot be resolved
    The import org.springframework.security.context.SecurityContextHolder cannot be resolved
    SecurityContext cannot be resolved to a type
    SecurityContextHolder cannot be resolved
;

导致大量异常级联的基本异常是

java.lang.Error: Unresolved compilation problems: 

这意味着您的其中一个 java 文件具有无效语法和编译器错误消息,未能成功编译。您可能应该重建整个项目并检查所有源代码是否存在编译错误。错误的class很可能是

com.greytip.wps.service.impl.PasswordManagerImpl