org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [applicationContext.xml]: Failed to instantiate [org.mybatis.spring.SqlSessionFactoryBean]: No default constructor found
时间: 2023-10-29 18:56:18 浏览: 82
测试spring中的org.springframework.beans.factory.InitializingBean
这个错误是因为在创建名为 `sqlSessionFactory` 的 bean 时,Spring 找不到默认构造函数。可能是因为你在定义 `SqlSessionFactoryBean` 的 bean 时使用了带参数的构造函数或者没有提供所需的参数。你可以尝试提供所需的参数或者在配置文件中指定 `SqlSessionFactoryBean` 的默认构造函数来解决这个问题。
阅读全文