We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
public class UserService { public User getUserById(long userId) { // trả về user theo id } }
public class UserController { @GetMapping("/users/{userId}") public User getUserById(@PathVariable long userId) { UserService service = new UserService(); return userService.getUserById(userId); } }
UserController
UserService
UserRepository
1.Tiêu tốn tài nguyên bộ nhớ
2.Hiệu suất kém
3.Lỗi OutOfMemoryError
@Service public class UserService { public User getUserById(long userId) { // Trả về user theo id } } @Controller public class UserController { @Autowired private UserService userService; @GetMapping("/users/{userId}") public User getUserById(@PathVariable long userId) { return userService.getUserById(userId); } }
2.2K Point(s)
1.2K Point(s)
313 Point(s)
178 Point(s)
138 Point(s)
Input your email to receive reset password link, or if you remember your password, you can click