package com.example.resourceserver.post; import java.util.List; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("/api/posts") public class PostRestController { private PostService postService; public PostRestController(PostService postService) { this.postService = postService; } @GetMapping("") public List getAll() { return postService.findAll(); } }