티스토리 뷰
HTTP 404 - 찾을 수 없음
요청된 리소스 [/]은(는) 가용하지 않습니다.
Origin 서버가 대상 리소스를 위한 현재의 representation을 찾지 못했거나, 그것이 존재하는지를 밝히려 하지 않습니다.
서버 연결 시 오류가 나면 자주 볼 수 있는 오류이다.
해당 오류를 많이 봐서 도가 텄다고 생각하고 알고 있던 방법과 검색한 걸 총동원 해보았지만
울고 싶을 정도로 해결이 안됐다.
일반적으로는 아래 포스트의 방법으로 대부분 해결이 된다.
https://october-east-sea.tistory.com/160
이렇게 해도 해결되지 않았고
내가 해결한 방법은 (진짜 안 되면 의심해보세요)
* Mapper.xml
체크한 부분이 잘못되어서 나는 오류였다.
resultType이 없는데 적혀있는 경우나 경로 지정을 잘못해도 저 오류가 날 수 있었다.
콘솔 창을 확인하면 자세한 결과를 얻을 수 있었는데 당연히 서버단의 문제라 생각하고 간과했다.
이렇게 친절하게 알려줬는데.. 다음엔 좀 더 일찍 확인해봐야겠다.
콘솔 창에 찍힌 오류
아래는 update에 resultType이 없는데 넣어서 생긴 오류이다.
Invocation of init method failed; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [오류난 파일 경로]'; nested exception is org.apache.ibatis.builder.BuilderException: Error creating document instance. Cause: org.xml.sax.SAXParseException; lineNumber: 68; columnNumber: 49; Attribute "resultType" must be declared for element type "update".
Caused by: org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [오류난 파일 경로]'; nested exception is org.apache.ibatis.builder.BuilderException: Error creating document instance. Cause: org.xml.sax.SAXParseException; lineNumber: 68; columnNumber: 49; Attribute "resultType" must be declared for element type "update".
'배운 것 기록 > 오류 노트' 카테고리의 다른 글
[Spring] javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 587; (0) | 2022.08.28 |
---|---|
[Spring] Gmail SMTP - javax.mail.AuthenticationFailedException (0) | 2022.08.27 |
[Spring] 카멜케이스 표기법 단축키 (0) | 2022.08.23 |
[Spring] insert는 되는데 select 안될 때 (0) | 2022.08.22 |
[Spring] org.springframework.web.servlet.PageNotFound - Request method 'GET' not supported (0) | 2022.08.15 |