본문 바로가기

error3

[Spring Boot][Error] org.springframework.web.HttpMediaTypeNotSupportedException 아래와 같이 에러가 발생할 때가 있습니다. [Error 명] Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported] 어떤 상황에서 발생을 하는 걸까요?? 이번에 Spring Security 케이스를 구성할때도 발생이 가능합니다. 기존에 REST API를 개발할 때, Controller.java를 개발했었습니다. 그때 코드를 보면... @RequestMapping(value = "/stationMise", method = RequestMethod.POST) public ResponseEntity in.. 2019. 12. 29.
[Spring Boot][Error] org.apache.ibatis.binding.BindingException API는 언뜻보면 참 간단해 보이는 구조이지만, 내부적으로 하나라도 엉키면 아무것도 동작하지 않습니다. 이번에는 여러가지 error중 한가지를 보도록 하겠습니다. [Error] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'mydto' not found. Available parameters are .. 2019. 12. 1.
[Spring Boot][Error] JSON parse error: Unexpected character API를 만들고 테스트를 하다 가끔 만날 수 있는 error입니다. 사실 error가 발생하면, 나오는 간단 설명을 읽어보면 어디서 왜 발생했는지 알 수 있습니다. Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Unexpected character ('}' (code 125)): was expecting double-quote to start field name; nested exception is com.fasterxml.jackson.core.JsonParseException: Unexpected character ('}' (code 125)): was expecting dou.. 2019. 11. 30.