1. request.getMethod() 함수를 이용해서 찍어보면 (request 는 HttpServletRequest 클래스의 객체) GET인지, POST인지 확인 할 수 있다.
 
2. request.getMethod().equals("GET")일 경우 GET으로 넘어오는 경우엔 true를 반환하고
request.getMethod().equals("POST")일 경우 POST로 넘어오는 경우엔 true를 반환 하겠죠.
 

 

블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,