warning: unmappable character for encoding MS949

|

jsp파일을 run시킬때 이런 워닝이 떴다.

왜 이런 인코딩 에러가 나는지는 모르겠으나...

jsp파일을 싱글컴파일 하고 실행하니 다시 뜨지 않는다..

왜일까 ... 나에겐 멘토가 필요해...
And

request.getSession()

|
request.getSession(true); // request에 대한 새로운 세션을 생성후 리턴
request.getSession(false); // 현재 세션이 존재하면 기존 세션 리턴, 없으면 null값 리턴
request.getSession(); //현재 세션이 존재하면 기존 세션 리턴, 없으면 새로생성한 세션 리턴

'작업노트 > JSP & Servlet' 카테고리의 다른 글

커스텀 태그 라이브러리 사용시  (0) 2008.10.09
멱등(Idempotent)  (0) 2008.01.05
스코프(Scope)  (0) 2007.11.19
[미해결] 이미지 태그 한글 파일명 경로 처리문제  (0) 2007.09.04
JspWriter  (0) 2007.05.27
And

JspWriter

|

The actions and template data in a JSP page is written using the JspWriter object that is referenced by the implicit variable out which is initialized automatically using methods in the PageContext object.

This abstract class emulates some of the functionality found in the java.io.BufferedWriter and java.io.PrintWriter classes, however it differs in that it throws java.io.IOException from the print methods while PrintWriter does not.

'작업노트 > JSP & Servlet' 카테고리의 다른 글

커스텀 태그 라이브러리 사용시  (0) 2008.10.09
멱등(Idempotent)  (0) 2008.01.05
스코프(Scope)  (0) 2007.11.19
[미해결] 이미지 태그 한글 파일명 경로 처리문제  (0) 2007.09.04
request.getSession()  (0) 2007.05.27
And
prev | 1 | ··· | 36 | 37 | 38 | 39 | 40 | 41 | next