🌳 에러 코드 Live 상세페이지 글 삭제 구현 중, 글 삭제가 안되는 현상. userId를 디버깅으로 확인 후, 9이어야 하지만 4인 현상. 🌳 해결 방법 🌾 원인 : RestController 메소드 파라미터에서 userId를 보내야 하는데 liveId를 보낸 원인. 🌾 해결 방법 : 메소드 파라미터를 자세히 확인 후, 해당 메소드에 맞게 파라미터 보내기. (liveId -> userId) Before After - RestController - break point
🌳 에러 코드 좋아요 빈하트에서 채운 하트로 바뀌지 않는 현상. 🌳 해결 방법 🌾 원인 : 좋아요 관련 메소드에서 파라미터 오류. 🌾 해결 방법 : 좋아요 존재 여부 메소드에서 liveId, userId가 들어가야 하는데 liveId, liveId로 썼기에, (liveId, userId로 변경.) Before After
🌳 에러 코드 org.springframework.jdbc.UncategorizedSQLException: ### Error updating database. Cause: java.sql.SQLException: Incorrect integer value: '/images/null_1685338402834/7ba0f1cf89ed40649c8c082e0275067d.jpg' for column 'userId' at row 1 ### The error may exist in file [/Users/hongyuri/Desktop/메가스터디 IT/language/workspace/Language/bin/main/mappers/liveMapper.xml] ### The error may involve com.la..
🌳 에러 코드 ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ',`reviewCategoryId` = 'Sports' ,`languageCategoryId` = 'EN' ,`title` = '' at line 3 ### The error may exist in file [/Users/hongyuri/Desktop/메가스터디 IT/language/workspace/Language/bin/mai..
🌳 에러 코드 Fri May 26 19:50:15 KST 2023 There was an unexpected error (type=Internal Server Error, status=500). nested exception is org.apache.ibatis.binding.BindingException: Parameter 'reviewId' not found. Available parameters are [arg1, arg0, param1, param2] org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'reviewId' not found. ..
🌳 에러 코드 2023-05-26 15:58:53,287 WARN [org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver] Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'reviewId' for method parameter type int is not present] 2023-05-26 15:58:53,287 INFO [com.language.Interceptor.PermissionInterceptor] [@@@@@@@@@@ afterCompletion] 2023-05-26 1..
🌳 에러 코드 댓글이 있는 글에, 비어이있는 댓글 계속 나오는 현상. 🌳 해결 방법 🌾 원인 : xml에서 reviewId로 파라미터를 받아서 comment - id를 조회해서 비어있는 댓글이 나오는 현상. 🌾 해결 방법 : id -> reviewId로 변경! Before After