portfolio
Toggle table of contents
0.0.1-SNAPSHOT
jvm
Platform filter
jvm
Switch theme
Search in API
portfolio
portfolio
/
org.project.portfolio.user.presentation
/
UsersController
Users
Controller
@
RestController
@
RequestMapping
(
value
=
[
"/api/v1/users"
]
)
class
UsersController
(
userService
:
UserManageService
)
User API 컨트롤러
Members
Constructors
Users
Controller
Link copied to clipboard
constructor
(
userService
:
UserManageService
)
Functions
get
User
Link copied to clipboard
@
GetMapping
(
value
=
[
"/{userId}"
]
)
fun
getUser
(
@
PathVariable
userId
:
Long
)
:
ResponseEntity
<
UserSummaryResponse
>