我正在遍历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实例,而是我自己的实例。
答案 0 :(得分: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());
}
}