如何列出所有Spring Boot数据源?

时间:2018-02-02 15:56:09

标签: spring spring-boot spring-data spring-cloud

如何列出所有Spring Boot数据源?包括使用Spring Cloud Config配置的其他配置以及基于pom.xml中db驱动程序的Maven依赖性自动配置的其他配置

1 个答案:

答案 0 :(得分:4)

假设您有多个具有不同限定符的数据源,您可以在列表中获取它。事实上,不仅仅是数据源类型,要列出任何类型,您可以拥有类似的代码。这个列表将包含所有bean实现。

@Autowired
List<DataSource> datasources;