【问题描述】今天初次学习Spring Boot,对照某个项目构建时,按照该项目一步一步的敲完之后,运行该项目,结果一直报错:Failed to load ApplicationContext;具体的报错如下:
java.lang.IllegalStateException: Failed to load ApplicationContext
…
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘loginController’: Unsatisfied dependency expressed through field ‘userService’; nested exception is org.springframework.beans.factory.
…
Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'com.example.test.bean.UserBean’
…
【问题解决】查找了半天,最后终于发现了问题所在,其中:com.example.test是我参照项目中的包名,而我在写项目的时候将其进行了修改,但在xml文件中忘记进行同步了。修改完之后问题即解决。
【图例】
修改前:
修改后: