jsp 회원등록,수정,삭제,리스트(CRUD) 로직 구현하기
1
2
3
4
5
6
7
8
9
10
11
12
|
request.setCharacterEncoding("UTF-8");
response.setContentType("text/html;charset=utf-8");
String uri = request.getRequestURI();
System.out.println("uri:"+uri);
String pj = request.getContextPath();
System.out.println(pj);
String command = uri.substring(pj.length());
System.out.println("command:"+command);
|
cs |
'기존 > 🏀Jsp' 카테고리의 다른 글
[JSP] 게시판 리스트 구현하기 (0) | 2022.05.31 |
---|---|
[JSP] 게시판 등록 구현하기 (0) | 2022.05.31 |
[JSP] 회원리스트 로직 구현하기 (0) | 2022.05.31 |
[JSP] jsp 비밀번호 찾기 로직 구현하기 (0) | 2022.05.31 |
[JSP] jsp 회원 아이디 찾기 로직 구현하기 (0) | 2022.05.31 |