오류확인

Spring

[spring] 404오류가 나는 경우, mapper쪽 오류 해결

controller @GetMapping에 ("/")는 안된다 @Controller @RequestMapping("/notice") public class NoticeController { @GetMapping("/") //안됨 public String getNoticeList() throws Exception { } } @GetMapping("main")등으로 써주어야 한다. Mapper SQL쪽에서 나는 정체불명의 오류 1. context-mapper.xml에 설정해준 위치에 sql파일이 있는지 확인 2. id등에 변수명이 틀리지 않았는지 확인 3. 공백이 없는지 확인 4. parameterType, resultType등을 설정해주었는지 확인 //변수명확인! //공백 없는지 확인! select NOT..

우주유령
'오류확인' 태그의 글 목록