Bạn đúng, bạn muốn sử dụng hồ sơ.
@Bean( name = "customerRepository" )
@Profile( "jpa")
CrudRepository getCustomerRepository()
{
return _customerRepository;
}
@Bean( name = "customerRepository" )
@Profile( "mongo")
MongoRepository getCustomerRepositoryMongo()
{
return _customerRepositoryMongo;
}
@Autowired
@Qualifier("customerRepository")
CrudRepository _crudRepository;
Trong application.properties, bây giờ bạn có thể đặt spring.profiles.active sang jpa hoặc mongo để chuyển đổi giữa các cơ sở dữ liệu.