Interface UserService


@FeignClient(name="user-service", configuration=FeignClientConfiguration.class) public interface UserService
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.http.ResponseEntity<UserDto>
    Retrieves a user by their ID.
  • Method Details

    • readUserById

      @GetMapping("/api/users/{userId}") org.springframework.http.ResponseEntity<UserDto> readUserById(@PathVariable Long userId)
      Retrieves a user by their ID.
      Parameters:
      userId - the ID of the user to retrieve
      Returns:
      a ResponseEntity containing the user DTO if found, or an empty body with a not found status code