Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'hbBackHistoryMapper' defined in file [E:\Worker\hgj-project\whole-my-api-pulgin\target\classes\com\example\wholemyapipulgin\mapper\HbBackHistoryMapper.class]: Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: Property 'sqlSessionFactory' or 'sqlSessionTemplate' are required
时间: 2023-06-30 14:05:14 浏览: 102
Caused by: java.lang.ClassNotFoundException: org.apache.commons.collections.Transformer异常
5星 · 资源好评率100%
这个错误是由于在创建名为'hbBackHistoryMapper'的Bean时出现了问题。这个Bean定义在'HbBackHistoryMapper.class'文件中,并且在初始化方法调用时出现了错误。错误的原因是缺少必要的属性'sqlSessionFactory'或'sqlSessionTemplate'。这些属性是需要在创建该Bean时进行设置的。你需要检查一下你的配置文件是否正确,以确保这些属性已经设置。
阅读全文