spring-boot JPA 多个源的存储库
我有来自两个来源的数据 1.来自数据库 2.使用 REST 的外部服务器
我已经为数据数据库编写了 JPA 存储库
public interface DeviceRepository extends JpaRepository<Devices, Long> {
List<Devices> findByActivation(boolean active);
List<Devices> findByDeviceId(int id);
}
我需要从 REST 获取第二种数据,
List<UserDevices> userDevices = // send http request to get this data
List<Devices> devices= tutorialRepository.findByActivation(true)
for(usermap : userDevices)
{
// iterate over and join these two
}
由于某些限制, 我们无法将 REST 数据来源到 Samedb,有吗有更好的选择来加入这些信息吗?
I have data from two sources 1.From database 2.External server using REST
I have written JPA repository for data database
public interface DeviceRepository extends JpaRepository<Devices, Long> {
List<Devices> findByActivation(boolean active);
List<Devices> findByDeviceId(int id);
}
Second kind of data I need to get from REST
List<UserDevices> userDevices = // send http request to get this data
List<Devices> devices= tutorialRepository.findByActivation(true)
for(usermap : userDevices)
{
// iterate over and join these two
}
due to some restriction we can not source the REST data to samedb, Is there any better option to join these information ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论