在 Spring Boot 2.0 应用程序中,我使用 spring-data 和 hibernate 实现。
我创建了两个数据源。
是否有任何特殊注释可用于实体或仓库以指定要使用的数据源?
数据源代码
spring.datasource.url= jdbc:postgresql://localhost:5432/vmax?stringtype=unspecified
spring.datasource.username=postgres
spring.datasource.password=postgres
spring.datasource.testOnBorrow=true
spring.datasource.validationQuery=SELECT 1
spring.jpa.properties.hibernate.default_schema=public