有没有办法创建一个 spring 启动客户端应用程序来从另一个 Spring 启动应用程序读取数据?

Is there a way to create a spring boot client app to read data from another Spring boot app?

我想创建 spring 引导应用程序工作,因为客户端包含 JSP 文件,视图控制器从另一个 spring 引导应用程序作为服务器端读取数据。

服务器端应用程序使用 JPA 处理数据库。

有什么方法或资源可以做到这一点吗?

是的,您可以通过将应用程序创建为 API 服务并将您的数据和信息从其他人发送给它来实现,如上面提到的 RestApi