get
: 입력된 모든 내용이 URL에 포함되어 전송된다. (기본값)
post
: 입력된 모든 내용이 URL에 노출되지 않고 전송된다.
EX)
<body>
/* method="get"이거나 입력을 안했을 경우 */
<!-- http://localhost/method.jsp?id=admin&pwd=admin123 -->
/* method="post"일 경우 아무것도 노출되지 않음! */
<form action="http://localhost/method.jsp" method="post">
<input type="text" name="id" id="id"/>
<input type="password" name="pwd" id="pwd"/>
<input type="submit" />
</form>
</body>