반응형
▶ GET 방식과 POST 방식의 차이
GET 방식
- 서블릿에 데이터를전송할 때는 데이터가 URL 뒤에 name=value 형태로 전송됨
- 여러 개의 데이터를 전송할 때는 '&'로 구분해서 전송됨
- 보안이 취약함
- 전송할 수 잇는 데이터는 최대 255자
- 기본 전송 방식이고 사용이 쉬움
- 웹 브라우저에 직접 입력해서 전송 가능
- 서블릿에서는 doGet( )을 이용해 데이터 처리
POST 방식
- 서블릿에 데이터를 전송할 때는 TCP/IP 프로토콜 데이터의 body 영역에 숨겨진 채 전송됨
- 보안에 유리
- 전송 데이터 용량이 무제한
- 전송 시 서블릿에서는 또 다시 가져오는 작업을 해야하므로 처리속도가 GET 방식보다 느림
- 서블릿에서는 doPost( )를 이용해 데이터 처리
▶ GET 방식과 POST 방식 요청 동시에 처리하기
① login.html 작성
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>로그인 창</title>
</head>
<body>
<form name="frmLogin" method="get" action="login2" encType="UTF-8">
아이디 : <input type="text" name="user_id"><br>
비밀번호 : <input type="password" name="user_pw"><br>
<input type="submit" value="로그인"><input type="reset" value="다시입력">
</form>
</body>
</html>
|
cs |
② LoginServlet2.java 작성 (생성 시 doGet과 doPost에 체크)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
package sec01.ex01;
import java.io.IOException;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Servlet implementation class LoginServlet2
*/
@WebServlet("/login2")
public class LoginServlet2 extends HttpServlet {
private static final long serialVersionUID = 1L;
/**
* @see Servlet#init(ServletConfig)
*/
public void init(ServletConfig config) throws ServletException {
System.out.println("init 메서드 호출");
}
/**
* @see Servlet#destroy()
*/
public void destroy() {
System.out.println("destroy 메서드 호출");
}
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
System.out.println("doGet 메서드 호출");
doHandle(request, response);
}
/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
System.out.println("doPost 메서드 호출");
doHandle(request, response);
}
private void doHandle(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException{
request.setCharacterEncoding("utf-8");
String user_id = request.getParameter("user_id");
System.out.println("doHandle 메서드 호출");
String user_pw = request.getParameter("user_pw");
System.out.println("아이디 : " + user_id);
System.out.println("비밀번호 : " + user_pw);
}
}
|
cs |
이 방식은 GET 방식으로 요청 시 다시 doHandle( )을 호출하고,
POST 방식으로 요청시 다시 doHandle( )을 호출하기 때문에 모든 호출방식에 대해 처리 가능
③ GET 방식으로 요청한 결과
④ POST 방식으로 요청한 결과 ( login.html 에서 method를 post로 변경한 후 실행 )
반응형
'코딩 기록 > JSP' 카테고리의 다른 글
[JSP] 커넥션풀(Connection Pool) 데이터베이스 연동하기 (0) | 2021.05.06 |
---|---|
[JSP] 서블릿에 로그인 요청 시 유효성 검사 ( + 관리자 판단 ) (0) | 2021.05.04 |
[JSP] 서블릿을 이용한 환율 계산기 (0) | 2021.05.04 |
[JSP] 서블릿(Servlet) - 여러개의 값 전송(체크박스) (0) | 2021.05.03 |
[JSP] 서블릿(Servlet) 매핑하기 - 애너테이션 (0) | 2021.05.03 |