[ GET ]
<figure class="imageblock alignLeft" style="margin: 0px; max-width: 100%; clear: both; padding: 0px; display: table; position: relative; font-family: "Noto Sans KR", sans-serif; font-size: 16px;">
</figure>
get에서는 Project Explorer에서 Servers->Tomcat v9.0 Server at localhost-config->server.xml 을 엽니다.
<figure class="imageblock floatLeft" style="margin: 0px 20px 0px 0px; max-width: 100%; clear: both; padding: 0px; display: table; position: relative; float: left; font-family: "Noto Sans KR", sans-serif; font-size: 16px;">
</figure>
자신 서버에 맞는 포트번호를 찾아서 URLEncoding="UTF-8" 를 추가 시킵니다.
[자신 서버에 맞는 포트번호 찾는 방법]
<figure class="imageblock alignLeft" style="margin: 0px; max-width: 100%; clear: both; padding: 0px; display: table; position: relative; font-family: "Noto Sans KR", sans-serif; font-size: 16px;">
</figure>
하단의 Servers에 있는 localhost를 좌클릭 두번하여 나오는 창에서 확인하실 수 있습니다.
<figure class="imageblock alignCenter" style="margin: 0px auto 20px; max-width: 100%; clear: both; padding: 0px; display: table; position: relative; text-align: center; font-family: "Noto Sans KR", sans-serif; font-size: 16px;">
</figure>
[ POST ]
post에는 JSP에 밑 코드를 추가하면 됩니다.
<% request.setCharacterEncoding("UTF-8"); %>
위 코드는 UTF-8를 인코딩하겠다는 의미입니다.
'JSP' 카테고리의 다른 글
GET과 POST (0) | 2019.10.11 |
---|---|
[JSP] 쿠키와 세션 (0) | 2019.06.20 |
[JSP] 영역(Scope)에 대한 정리 (0) | 2019.06.20 |
[JSP] GET / POST 한글 깨짐 처리 방법 (0) | 2019.06.20 |
Get방식과 Post방식 (0) | 2019.06.19 |