I understand some of the benefits with using Spring's JPA such as taking advantage of Crud and JPA repository functions to effortlessly access a data source. This seems lost when multiple data sources are to be used. I've seen various examples on how to do this, but the added time to create a bunch of classes for each data source seems excessive.
Why should we take the time to use Spring's JPA to configure multiple data sources when can just use POJO methods?
Thanks.