Exception encountered during context initialization - cancelling refresh attempt: 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 log4j:WARN No appenders could be found for logger (com.alibaba.druid.pool.DruidDataSource). log4j:WARN Please initialize the log4j system properly. log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
时间: 2024-04-27 07:22:32 浏览: 172
单片机多生理参数监护仪的设计(终稿)-毕业论文.doc
根据你提供的信息,这是一个 Spring 框架的应用程序在启动时遇到的错误。具体来说,应用程序无法创建一个名为 "sqlSessionFactory" 的 bean,这个 bean 是由 MyBatis 框架提供的。错误信息提示没有找到默认构造函数,这可能是因为在你的代码中没有实现一个无参数的构造函数。此外,错误信息还显示 log4j 的警告信息,这可能是因为你的应用程序缺少正确的 log4j 配置文件。你可以检查一下你的代码和配置文件,看看是否有问题导致应用程序无法启动。
阅读全文