org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'sessionFactory' is defined

请检查你在web.xml中加载spring.xml文件的时候没有加载成功,看你的路径是否正确

<context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>/WEB-INF/spring.xml</param-value>
 </context-param>

原文地址:https://www.cnblogs.com/gavinYang/p/3516586.html