Java
- 6 ответов
- 0 вопросов
2
Вклад в тег
@Inject
private JsonParser jsonParser;
@RequestMapping(value="/user_profile/{id}", method = RequestMethod.GET)
public ResponseEntity<Map<String, Object>> get(@PathVariable("id") Long id) {
UserEntity entity = userRepository.get(id);
Map<String, Object> profile = jsonParser.parseMap(entity.getUserProfile());
return new ResponseEntity(profile, HttpStatus.OK);
}