【问题标题】:No qualifying bean of type 'org.springframework.jdbc.core.JdbcTemplate' available error没有“org.springframework.jdbc.core.JdbcTemplate”类型的合格 bean 可用错误
【发布时间】:2020-01-07 10:29:04
【问题描述】:

我正在浏览https://developer.ibm.com/tutorials/spring-with-db2-via-jdbc/ 上的 tutorial.example 但无法让它工作,我不断收到以下错误并且不确定如何修复。

没有可用的“org.springframework.jdbc.core.JdbcTemplate”类型的合格 bean:预计至少有 1 个有资格作为自动装配候选者的 bean。依赖注解:{@org.springframework.beans.factory.annotation.Autowired(required=true)}'

教程中没有提到设置 bean,所以我不确定我是否应该断开它来修复它,或者我只是犯了一个错误。

我的应用程序类 -

@SpringBootApplication
public class SBApplication {
    public static void main(String[] args) {
        SpringApplication.run(SBApplication.class, args);
    }
 }

示例休息控制器 -

package application.rest.v1;

import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.ResponseBody;
import java.util.ArrayList;
import java.util.List;
import main.java.application.jdbc.*;

@RestController
public class Example {
    @Autowired
    JdbcTemplate jdbcTemplate;

    @RequestMapping("test")
    public @ResponseBody ResponseEntity<String> example() {
        List<String> list = new ArrayList<>();
        list.add("Table data...");
        jdbcTemplate.query(
                "SELECT * FROM things", new Object[]{},
                (rs,rowNum) -> new Things(rs.getLong("id"), rs.getString("name")))
                .forEach(thing -> list.add(thing.toString()));
        return new ResponseEntity<String>(list.toString(), HttpStatus.OK);
    }
}

application.properties -

spring.datasource.url=jdbc:imdb://xxxx.xxx.xxxx/xxxx
spring.datasource.username=xxxxxxx
spring.datasource.password=xxxx
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration

另外,我没有连接到教程中建议的 DB2 实例,而是我自己的实例。

【问题讨论】:

标签: java spring-boot jdbc db2


【解决方案1】:

我相信您缺少应该在配置中配置 JdbcTemplate 的部分。当您使用spring boot 时,您可以通过类上的@Configuration 注释来实现它。您的典型配置如下所示

@Configuration
public class WebAppConfig {

    @Bean(name = "appDataSource")
    @Primary
    @ConfigurationProperties(prefix = "spring.datasource")
    public DataSource dataSource() {
        return DataSourceBuilder.create().build();
    }

    @Bean(name = "applicationJdbcTemplate")
    public JdbcTemplate applicationDataConnection(){
        return new JdbcTemplate(dataSource());
    }
}

【讨论】:

  • 你是对的,谢谢。不知道为什么这不包含在教程文档中。
  • 乐于助人:)
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2020-02-05
  • 2020-06-10
  • 2019-02-20
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多