Notice
Recent Posts
Link
Tags
- ORM
- Django
- @transactional
- DI
- spring mvc
- spring security 6
- static
- sql
- 문자열
- jpa
- SSL
- java
- string
- mysql
- Docker
- springboot
- spring boot
- join
- spring
- 스프링
- AWS
- 데이터베이스
- 자바
- 1차원 배열
- nginx
- 스프링부트
- 프로그래머스
- select
- hibernate
- PYTHON
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Archives
목록httpmessagenotreadableexception (1)
개발하는 자몽
[Spring Boot / Error] Required request body is missing
상황`Required reuqest body is missing`라는 문구와 함께 `HttpMessageNotReadableException` 타입의 에러가 발생했다. `Controller`에 존재하는 메서드에서 `request body`를 인식하지 못하는 것으로 확인했다.@RestControllerpublic class RestController { @PostMapping("/aaa") public ResponseEntity aaa(@RequestBody @Valid final RequestDto dto) { ... return ResponseEntity.status(HttpStatus.CREATED).build(); } ...}해당 메서드에 `@RequestBody..
Java & Kotlin/Spring
2024. 7. 13. 09:26