springboot 如何取消starter的自动注入
springboot 取消starter的自动注入
starer是spring boot中一个很重要的概念,starter相当于一个模块,它能将所需要的的依赖整合在一起并对模块内的bean自动装配到spring ioc容器,使用者只需要在maven中依赖相应的starter包并无需做过多的依赖即可进行开发。
看例子
比如,我们导入了mybatis相关的依赖,但是我可能暂时没用到数据库,所以就没有做数据库相关的配置,这时候项目就会无法启动
2020-03-08 22:13:10.396 warn 10692 --- [ main] configservletwebserverapplicationcontext : exception encountered during context initialization - cancelling refresh attempt:
org.springframework.beans.factory.beancreationexception: error creating bean with name 'datasource' defined in class path resource
[org/springframework/boot/autoconfigure/jdbc/datasourceconfiguration$hikari.class]: bean instantiation via factory method failed;
nested exception is org.springframework.beans.beaninstantiationexception: failed to instantiate
[com.zaxxer.hikari.hikaridatasource]: factory method 'datasource' threw exception;
nested exception is org.springframework.boot.autoconfigure.jdbc.datasourceproperties$datasourcebeancreationexception: failed to determine a suitable driver class
因为springboot中默认的数据库连接池是hikari,你没有在application.properties里面进行数据库相关的配置的话,那么就会无法自动装载datasource
error creating bean with name 'datasource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/datasourceconfiguration$hikari.class]: bean instantiation via factory method failed; nested exception is org.springframework.beans.beaninstantiationexception: failed to instantiate [com.zaxxer.hikari.hikaridatasource]
重点来了
如何取消相关starer的自动注入?
我们还是以数据库的这个为例子:
@springbootapplication(exclude = datasourceautoconfiguration.class)
那么,就需要在启动类加上如上配置,取消datasourceautoconfiguration的自动注入
springbootapplication是一个组合注解,其实里面真正实现自动注入功能的,是这个enableautoconfiguration注解
springboot 自动注入问题
description:
field service in com.test.controller.usercontroller required a bean of type 'com.test.service.userservice' that could not be found.
action:
consider defining a bean of type 'com.test.service.userservice' in your configuration.
项目启动的时候出现出现问题
run
controller
service
dao
配置文件如下
项目目录
找了几个类,该注解的也注解了。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
上一篇: 手把手带你走进Go语言之运算符解析
推荐阅读
-
如何通过一张图搞懂springBoot自动注入原理
-
回车后Word会自动编号就不是想要的结构如何取消呢
-
YY语音在电脑开机时会自动启动如何取消YY的开机启动
-
在上网时会提示有更新如何取消电脑系统的自动更新
-
springBoot是如何自动装配的(源码分析)
-
WPS中如何自动取消当输入网址时自动转换成超链接的形式
-
在Word2010中如何取消按回车键跳到第二行时产生的自动编号
-
springboot多数据源使用@Qualifier自动注入无效的解决
-
SpringBoot2.1.x,创建自己的spring-boot-starter自动配置模块操作
-
springboot 如何取消starter的自动注入