@Qualifier
можно добавить не только к классу, но и к методу с аннотацией @Bean
вот так:@Configuration
public class DbConfig {
@SqlDataSource
@Bean
public DataSource sqlDataSource() {
// Build SQL data source
}
@NoSqlDataSource
@Bean
public DataSource noSqlDataSource() {
// Build No-SQL data source
}
}
create table if not exists Counterparty (
id int primary key auto_increment,
version int not null,
legal_entity_id int not null,
person_id int not null,
bailee_id int not null,
foreign key (legal_entity_id) references LegalEntity(id),
foreign key (person_id) references Person(id),
foreign key (bailee_id) references Person(id)
);