Development/JSP(199)
-
doPost()
doPost() html내 form태그의 method속성이 post일 경우 호출 됩니다. HTML 페이지 ... protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { }
-
JSP태그 종류
JSP태그 종류 구분태그설명지시자페이지 속성주석코드 설명선언변수 선언, 메소드 선언 선언 후 마지막에 ;을 붙입니다.표현식결과값 출력 선언되어진 메소드 호출시에만 ;을 붙입니다.스크립트릿JAVA 코드액션태그 자바빈 연결
-
request.getRealPath() deprecated 메소드 대체 함수
request.getRealPath() deprecated 메소드 deprecated된 getRealPath()메소드 사용시 아래와 같은 메시지가 발생합니다. The method getRealPath(String) from the type ServletRequest is deprecated //deprecated된 메소드 String path = request.getRealPath("fileFolder"); 해결방법 1 //deprecated된 메소드 해결 코드 1 String path = application.getRealPath("fileFolder"); 해결방법 2 //deprecated된 메소드 해결 코드 2 String path = request.getSession().getServletCont..
-
cos 라이브러리 다운받기 - 파일 업로드 라이브러리
cos 라이브러리 다운받기 파일 업로드 라이브러리 다운로드 사이트에 접속 http://www.servlets.com/ 좌측의 [com.oreilly.servlet] 클릭 "Download" 영역까지 페이지를 스크롤합니다. [cos-26Dec2008.zip] 파일 다운로드 직접 다운로드 or http://www.servlets.com/cos/cos-26Dec2008.zip
-
include 디렉티브
include 디렉티브 다른 문서를 포함합니다. 즉. 현재 페이지내에 다른 페이지를 삽입할 때 사용 됩니다. 코드 차원에서 포함됩니다. include 디렉티브 구문 별도의 페이지를 현재 페이지에 삽입할 때 file속성을 이용 합니다 include 디렉티브 활용 모든 JSP 페이지에서 사용되는 변수 지정 저작권 표시와 같은 간단하면서도 모든 페이지에서 중복되는 문장
-
데이터 객체(자바 빈)의 getter와 setter 자동으로 생성하기
데이터 객체(자바 빈)의 getter와 setter 자동으로 생성하기 데이터 저장을 위해 변수 선언 후 >> 코드 블록 안에서 마우스 우클릭 >> [Source] >> [Generate Getters and Setters…] getter와 setter 메소드를 생성할 멤버변수를 체크한 후 >> [OK] 오타 없이 순식간에 getter와 setter 메소드가 완성됩니다.