spring-boot JPA 多个源的存储库

发布于 2025-01-10 08:41:52 字数 630 浏览 0 评论 0原文

我有来自两个来源的数据 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文