Required request body is missing 에러 해결
개발 상황axios를 통해서 controller에 통신을 하려던 중 에러가 발생되었다.더 정확히는, 통신은 되는데 axios에서 보낸 data가 controller에서 찍히지 않았다. 문제의 소스는 아래와 같다.// xx.jsaxios({ url: "/store/getStore", method: "get", data: { seq: values.seq }}).then((res) => { console.log(res.data);})// xx.java@ResponseBody@GetMapping("/getStore")public String getStore(Map param) throws JsonProcessingException { System.out.println("getStore..
2024.06.29