.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.springmvc.controller.HelloController] for bean with name '/hello' defined in class path resource [springmvc.xml]; nested exception is java.lang.ClassNotFoundException: com.springmvc.controller.HelloController
时间: 2023-05-18 11:04:44 浏览: 245
org.springframework.web.jar
这个错误提示是因为在 springmvc.xml 配置文件中定义了名为 '/hello' 的 bean,但是找不到对应的类 com.springmvc.controller.HelloController。可能是因为该类没有被正确地导入或者类名或包名有误。需要检查配置文件和类的路径是否正确。
阅读全文