일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- C#
- Linux
- error
- 채보
- VS Code
- Visual Studio
- Selenium
- mysql
- paramiko
- YOLO
- C
- 컨테이너
- pandas
- Docker
- label
- C++
- 오류
- OpenCV
- 기타 연주
- SSH
- pytorch
- 프로그래머스
- LIST
- windows forms
- JSON
- pip
- 핑거스타일
- Numpy
- ubuntu
- Python
- Today
- Total
목록Controller (2)
기계는 거짓말하지 않는다
값을 받지 못하면 org.springframework.web.bind.MissingServletRequestParameterException 이 발생한다. Parameter 가 필수적이지 않다면 @RequestParam 의 required 를 false로 설정. - One Parameter Controller @RestController @RequiredArgsConstructor public class HomeDataController { @PostMapping("/test/sendData") public String sendData(@RequestParam(value="data") String data) { return "return: " + data; } } HTML 보내기 받은 데이터 결과 데이터..
아래는 오류 메시지이다. WARN 29148 --- [io-8080-exec-10] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' not supported] 또는 Request method 'POST' not supported 여러가지 이유가 있지만 근본적인 원인은 Controller가 @RestController 라면 @PostMapping 또는 @GetMapping 과 @Controller 라면 @RequestMapping 의 RequestMethod.POST or GET 사용시 HTML의 데이터를 보내..