當前位置: 首頁>>代碼示例>>Java>>正文


Java UserDTO類代碼示例

本文整理匯總了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);
}
 
開發者ID:mraible,項目名稱:devoxxus-jhipster-microservices-demo,代碼行數:17,代碼來源:AccountResource.java

示例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);
}
 
開發者ID:axel-halin,項目名稱:Thesis-JHipster,代碼行數:19,代碼來源:AccountResource.java


注:本文中的io.github.jhipster.registry.web.rest.dto.UserDTO類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。