Я не знаю, как использовать локальное хранилище при загрузке Spring, мой интерфейс находится в Angular, и мне нужно отправить локальное хранилище в контроллер, который преобразуется в DTO, чтобы получить строки из базы данных ext ext, на самом деле браузер возвращает мне ошибку500
org.springframework.http.converter.HttpMessageNotReadableException: Required request body is missing: public ..
Запрос от Angular
getAttestazioni(): Observable<Posts[]> {
return this.http.post<Posts[]>(this.myAppUrl + this.myApiPostsUrl, this.authService.getLoggedUserFromSessionStorage())
.pipe(
retry(1),
catchError(this.errorHandler)
);
}
Функция для получения локального хранилища.
public getLoggedUserFromSessionStorage(): User {
if (localStorage) {
return JSON.parse(localStorage.getItem('currentUser'));
}
return null;
}
Контроллер Spring Boot
@RequestMapping(value = "/posts", method = {RequestMethod.GET, RequestMethod.POST})
public ResponseEntity<List<PostDTO>> fetchAll(@RequestBody UserDTO currentUser) {
List<Post> posts;
List<PostDTO> postsDTO = new ArrayList<>();
try {
posts = postService.getAll(currentUser);
if (posts != null) {
postsDTO = postService.fromVOtoDTO(posts, postsDTO);
}
if (postsDTO.isEmpty()) {
System.out.println("No Posts found");
return new ResponseEntity<>(HttpStatus.NOT_FOUND);
}
return new ResponseEntity<>(attestazioniDTO, HttpStatus.OK);
} catch (AuthenticationException e) {
return new ResponseEntity<>(HttpStatus.UNAUTHORIZED);
} catch (Exception e) {
return new ResponseEntity<>(HttpStatus.INTERNAL_SERVER_ERROR);
}
}
Это мое локальное хранилище, объект находится в теле:, и, возможно, для этого в контроллере нет карты.
{headers: {normalizedNames: {}, lazyUpdate: null}, status: 200, statusText: "OK",…}
body: {idUser: "232323", currentGroup: "1213", ip: "192.168.1.2",…}
headers: {normalizedNames: {}, lazyUpdate: null}
ok: true
status: 200
statusText: "OK"
type: 4
url: "http://localhost:8080/api/login/"
Большое спасибо за вашу помощь.