2016-11-19 103 views
0

任何人都可以告诉我,为什么会发生此错误? 其实我不明白从哪里开始解决它。org.springframework.beans.factory.UnsatisfiedDependencyException,java.lang.Error:未解决的编译问题

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

导致大量的异常级联一路上涨的基础例外是

java.lang.Error: Unresolved compilation problems: 

这意味着帽子你的java文件中的一个有无效语法和编译器错误消息,并未能成功编译。 YOu应该重建整个项目并检查编译错误的所有源代码。错误类可能是

com.greytip.wps.service.impl.PasswordManagerImpl 
+0

它的工作,这是一个导入问题 – zeji

相关问题