반응형
request.getParameter("aaa"); //파라미터 받을 때
request.getLocale().toString() //지역코드
request.getContentLength() //파일길이
경로 돌리기
---------------------------------------------------------------------------------------------
response.sendRedirect("http://naver.com"); //단순 URL로 경로 돌리기 클라이언트보고 이경로 조회하라고 시킴.
//바로 서버로 전송 이방법을 사용하면 속성이나 파라미터도 같이 넘어감.
response.sendRedirect("http://naver.com"); //단순 URL로 경로 돌리기 클라이언트보고 이경로 조회하라고 시킴.
//바로 서버로 전송 이방법을 사용하면 속성이나 파라미터도 같이 넘어감.
request.setAttribute("q", new Integer(num1 / num2));//속성정보
RequestDispatcher dispatcher = request.getRequestDispatcher("0301result.jsp"); //이리로 이동
dispatcher.forward(request, response);//페이지 이동
dispatcher.include(request, response);//인클루드
dispatcher.forward(request, response);//페이지 이동
dispatcher.include(request, response);//인클루드
---------------------------------------------------------------------------------------------
세션
session.setAttribute("MyAppOperator", "");
boolean isOperator = (session.getAttribute("MyAppOperator") != null);
if (isOperator) {처리}
application 내장변수
application.getContextPath()//현재 패스
application.getRealPath("/chap0205.jsp") //절대경로 패스
application.getContextPath()//현재 패스
application.getRealPath("/chap0205.jsp") //절대경로 패스
반응형
'JavaWeb' 카테고리의 다른 글
[JSP] include (0) | 2015.09.07 |
---|---|
[빌드오류] Access restriction: The type QName is not accessible due to restriction on required library (0) | 2015.09.07 |
문자열 포맷 (0) | 2015.09.07 |
파일 읽기 (0) | 2015.09.07 |
참고 URL (0) | 2015.09.07 |
댓글