Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Spring-Data-Rest 创建了模型对象并以 REST 样式公开,我是否可以通过客户端(前端)的各个端点直接使用它?
或者我需要创建 Spring MVC 控制器,它再次从 DAO 层获取数据并在客户端(前端)使用它?
我假设您的客户端是 Java。它可以是任何可以消耗 REST 的东西。
您可以在 Spring 中使用 RestTemplate 从服务器获取数据,它可以为您将其转换为客户端上的类。
http://static.springsource.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/client/RestTemplate.html