如何在单个类中正确实现2个数据源 - 1个使用Spring的jdbcTemplate,另一个使用Spring JPA Repository?
private JdbcTemplate jdbcTemplate;
@Autowired
@Qualifier("DataSource1")
public void setDataSource1(DataSource dataSource) {
this.jdbcTemplate = new JdbcTemplate(dataSource);
}
@Qualifier("DataSource2")
private final MyRepository repo;