티스토리 뷰
반응형
package org.kodejava.example.servlet;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
public class ParameterCheck extends HttpServlet {
protected void doGet(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException {
// Check if username parameter exists
if (req.getParameterMap().containsKey("username")) {
String username = req.getParameter("username");
}
// Check if password parameter exists
if (req.getParameterMap().containsKey("password")) {
String password = req.getParameter("password");
}
}
}
반응형
'Spring' 카테고리의 다른 글
Apache poi 4.0.x 라이브러리 Spring excel 다운로드 (완성) (0) | 2020.07.15 |
---|---|
Apache poi 4.0.x 라이브러리 Spring excel 다운로드 (응용1) (0) | 2020.07.14 |
Apache poi 4.0.x 라이브러리 Spring excel 다운로드 (기본) (0) | 2020.07.14 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 공백찾기
- js
- jQuery
- 정규식 특수문자
- JSON파싱
- 정규식
- poi
- 계좌번호정규식
- 정규식 한글만
- JSON날짜
- selectbox
- spring 엑셀
- PageNotFound - No mapping for GET
- Regex
- mybatis
- JSON
- IntelliJ #gradle #tomcat #spring #springmvc
- ''찾기
- 정규식 숫자만
- spring error #
- POI EXCEL
- poi 엑셀
- 엑셀다운로드
- Spring
- 인텔리제이
- select제어
- no getter for property named
- Failed to load resource: the server responded with a status of 404 (Not Found)
- SpringXmlModelInspection
- 이메일 정규식
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함