목록Spring/JSP tutorial (3)
백지부터 시작하는 이세계 코딩 생활
에러 : Request method 'POST' not supported
Ref : zzznara2.tistory.com/672 [스프링] spring에서 org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported in org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported in spring url을 호출하니 이런 오류가 났습니다. POST 방식을 지원하지 않는다는 뜻인데요. 해당 url.. zzznara2.tistory.com 해당 url을 매핑하는 @RequestMapping 부분을 확인 >> //회원가입 및 로그인 맵핑 @Reque..
Spring/JSP tutorial
2020. 9. 22. 10:32
session 값을 받아올 수 없을 때
Ref : 8boknote.tistory.com/21 .jsp 에서 session값이 받아와지지 않을 때 오류도 없고, 아무런 문제가 없는데 session값이 받아와 지지 않는 경우가 있습니다. 그럴 경우 .jsp 파일 맨 윗쪽에 가 있는지 확인해보세요. 있다면 이 것을 지우면 정상적으� 8boknote.tistory.com *.jsp 파일 안에 가 있는지 확인 >> 을 지우거나 false -> true 로 수정하면 seesion 값을 받아 올 수 있게 됨. session.setAttribute("id",id); 구문을 사용하려 했으나 sessio 에 밑줄 그어지면서 작동하지 안았을 때.
Spring/JSP tutorial
2020. 9. 22. 10:16