ERROR
- HTTP Status 500 - Request processing failed; nested exception is org.springframework.web.multipart.MultipartException: Current request is not a multipart request 2017.08.28
- [mysql] SQL 오류 (1452): Cannot add or update a child row: a foreign key constraint fails 2017.05.30
- [mysql] foreign key constraint is incorrectly formed (errno:150) 2017.05.30
- [JSP] response.sendRedirect 전송오류 2017.05.11
HTTP Status 500 - Request processing failed; nested exception is org.springframework.web.multipart.MultipartException: Current request is not a multipart request
2017. 8. 28. 14:34
파일업로드시 오류
multipart error
타입을 지정안해줘서..
[mysql] SQL 오류 (1452): Cannot add or update a child row: a foreign key constraint fails
2017. 5. 30. 10:36
==>참조무결성에 따라 참조키는 항상 부모키에 해당하는 값만 넣을 수 있다.
참조받는 테이블의 데이터를 먼저 삽입해서 발생한 오류. 데이터를 삭제한 뒤 참조키 설정하였다.
[mysql] foreign key constraint is incorrectly formed (errno:150)
2017. 5. 30. 10:16
SQL 오류 (1005): Can't create table 'mydrug.#sql-950_9' (errno: 150)
Foreign key constraint is incorrectly formed
외래키를 설정할 때 참조데이터가 다를 경우 발생하는 오류
1. 데이터 타입이 같은지 확인 (unsigned/signed)INT,VARCHAR 등
2. NULL값 허용여부 확인
3. 참조받는 데이터가 unique, primary key 가 아닌지 확인
4. 테이블의 조합확인
->하나는 euckr_korean_ci 하나는 utf_general_ci 여서 오류가 발생했다.
[JSP] response.sendRedirect 전송오류
2017. 5. 11. 14:11
response.sendRedirect("detail.jsp?category="+category+"&no="+request.getParameter("no"));
-> result set 이 빈 이유는 값을 받지못했기때문.
sendRedirect로는 값을 전송할 수 없다.
pageContext.forward("detail.jsp?category="+category+"&no="+request.getParameter("no"));
로 대신하여 해결하였다.