本文整理匯總了Java中io.github.jhipster.registry.web.rest.dto.UserDTO類的典型用法代碼示例。如果您正苦於以下問題:Java UserDTO類的具體用法?Java UserDTO怎麽用?Java UserDTO使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
UserDTO類屬於io.github.jhipster.registry.web.rest.dto包,在下文中一共展示了UserDTO類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getAccount
import io.github.jhipster.registry.web.rest.dto.UserDTO; //導入依賴的package包/類
/**
* GET /account : get the current user.
*
* @return the ResponseEntity with status 200 (OK) and the current user in body, or status 500 (Internal Server
* Error) if the user couldn't be returned
*/
@GetMapping("/account")
@Timed
public ResponseEntity<UserDTO> getAccount() {
Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
User user = (User) authentication.getPrincipal();
UserDTO userDTO = new UserDTO(user.getUsername(),
user.getAuthorities().stream()
.map(authority -> authority.getAuthority()).collect(Collectors.toSet()));
return new ResponseEntity<>(userDTO, HttpStatus.OK);
}
示例2: getAccount
import io.github.jhipster.registry.web.rest.dto.UserDTO; //導入依賴的package包/類
/**
* GET /account : get the current user.
*
* @return the ResponseEntity with status 200 (OK) and the current user in body, or status 500 (Internal Server
* Error) if the user couldn't be returned
*/
@RequestMapping(value = "/account",
method = RequestMethod.GET,
produces = MediaType.APPLICATION_JSON_VALUE)
@Timed
public ResponseEntity<UserDTO> getAccount() {
Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
User user = (User) authentication.getPrincipal();
UserDTO userDTO = new UserDTO(user.getUsername(),
user.getAuthorities().stream()
.map(authority -> authority.getAuthority()).collect(Collectors.toSet()));
return new ResponseEntity<>(userDTO, HttpStatus.OK);
}