Consider defining a bean of type ‘org.springframework.jdbc.core.JdbcTemplate‘ in your configuration

2022-06-18 11:19:58

首先遇到这个问题很好解决,不要慌

控制台显示没有找到jdbcTemplate就是因为没有配置连接池,给它安排上就OK了

packagecom.uncle.seciruty.springboot;importorg.springframework.boot.SpringApplication;importorg.springframework.boot.autoconfigure.SpringBootApplication;importorg.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;importorg.springframework.context.annotation.Bean;importjavax.sql.DataSource;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.core.env.Environment;importcom.alibaba.druid.pool.DruidDataSource;/**
 * @program: spring-boot-security
 * @description:
 * @author: 步尔斯特
 * @create: 2021-07-23 19:35
 */@SpringBootApplication(exclude={DataSourceAutoConfiguration.class})publicclassSecuritySpringBootApp{publicstaticvoidmain(String[] args){SpringApplication.run(SecuritySpringBootApp.class,args);}@AutowiredprivateEnvironment env;//destroy-method="close"的作用是当数据库连接不使用的时候,就把该连接重新放到数据池中,方便下次使用调用.@Bean(destroyMethod="close")publicDataSourcedataSource(){DruidDataSource dataSource=newDruidDataSource();
        dataSource.setUrl(env.getProperty("spring.datasource.url"));
        dataSource.setUsername(env.getProperty("spring.datasource.username"));//用户名
        dataSource.setPassword(env.getProperty("spring.datasource.password"));//密码
        dataSource.setDriverClassName(env.getProperty("spring.datasource.driver-class-name"));
        dataSource.setInitialSize(2);//初始化时建立物理连接的个数
        dataSource.setMaxActive(20);//最大连接池数量
        dataSource.setMinIdle(0);//最小连接池数量
        dataSource.setMaxWait(60000);//获取连接时最大等待时间,单位毫秒。
        dataSource.setValidationQuery("SELECT 1");//用来检测连接是否有效的sql
        dataSource.setTestOnBorrow(false);//申请连接时执行validationQuery检测连接是否有效
        dataSource.setTestWhileIdle(true);//建议配置为true,不影响性能,并且保证安全性。
        dataSource.setPoolPreparedStatements(false);//是否缓存preparedStatement,也就是PSCachereturn dataSource;}}

当然,别忘了加入依赖哦,阿里的德鲁伊。over。

  • 作者:「已注销」
  • 原文链接:https://blog.csdn.net/m0_51945027/article/details/119465417
    更新时间:2022-06-18 11:19:58