启动应用程序时,看到以下错误:
在上下文初始化期间遇到异常-取消刷新尝试:org.springframework.beans.factory.BeanCreationException:创建名称为'blockDataController'的bean时出错:注入资源依赖项失败; 嵌套的异常是org.springframework.beans.factory.BeanCreationException:创建名称为'blockSummaryImpl'的bean时出错:注入资源依赖项失败;嵌套的异常是org.springframework.beans.factory.UnsatisfiedDependencyException:创建文件[D:\ YueNiuProject \ StockMarket \ yueniu-stock-data \ market-data-dao \ target \ classes \ com \中定义的名称为'prodCodeMapper'的bean时出错yueniu \ stock \ market \ data \ mapper \ block \ ProdCodeMapper.class]:通过bean属性'sqlSessionFactory'表示的不满足的依赖关系; 嵌套的异常是org.springframework.beans.factory.UnsatisfiedDependencyException:在类路径资源[org / mybatis / spring / boot / autoconfigure / MybatisAutoConfiguration.class]中创建名称为'sqlSessionFactory'的bean时出错:通过方法'sqlSessionFactory'表示的不满足的依赖关系参数0;嵌套异常是org.springframework.beans.factory.BeanCreationException:创建在类路径资源[org / springframework / boot / autoconfigure / jdbc / DataSourceConfiguration $ Hikari.class]中定义的名称为“ dataSource”的bean时出错:通过工厂方法进行Bean实例化失败;嵌套的异常是org.springframework.beans.BeanInstantiationException:无法实例化[com.zaxxer.hikari.HikariDataSource]:工厂方法'dataSource'引发了异常; 嵌套的异常是org.springframework.boot.autoconfigure.jdbc.DataSourceProperties $ DataSourceBeanCreationException:无法确定合适的驱动程序类
答案 0 :(得分:1)
与sql数据库的连接,必须在application.properties中配置数据源
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://..
spring.datasource.username=//..
spring.datasource.password=//..