有谁能告诉我,为什么会发生这种错误? 实际上我无法理解从哪里开始解决它。
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
;
答案 0 :(得分:0)
导致大规模异常级联的基本异常是
java.lang.Error: Unresolved compilation problems:
这意味着您的一个java文件具有无效语法和编译器错误消息,并且无法成功编译。你应该重建整个项目并检查编译错误的所有来源。错误的类可能是
com.greytip.wps.service.impl.PasswordManagerImpl