본문 바로가기

전체 글88

23.01.25 JSON & ajax(미정리) 2023. 1. 30.
23.01.20 file Upload / Download 1. Upload - 요청주소 http://localhost/webPro/fileUpDown/uploadFrm01.jsp - 파일 업로드 위치 C:\file_repo - 기능 동작 페이지 - 해당 기능 구현 소스 (upload.jsp) (jsp 페이지네 스크립틀릿 내에 코딩) ---->> 파일 처리 구문 향후 DB에 저장되어야 하는 DATA out.print(">>"+(i-1)+"번째 파일"); out.print(" -파라미터(변수명) : "+fileItem.getFieldName()); out.print(" -파일명 : "+fileItem.getName()); out.print(" -파일크기 : "+fileItem.getSize()+" "); //콘솔출력 System.out.println("파라미터(변.. 2023. 1. 30.
23.01.28 MySQL->Oracle 교체 중 error 기존 mysql 사용시 NoticeDAO.java 파일에서 String sql = "insert into article (writer_id, writer_name, title, regdate, moddate, read_cnt, isshow) "+ "values(?, ?, ?, ?, ?, 0, 'Y')"; 이러한 형식으로 insert하였다.(MySQL은 auto_increment 기능이 있어서 insert 시에 auto_increment 기능이 적용된 컬럼에는 굳이 insert 값을 넣지 않아도 되지만 oracle은 해당 auto_increment 기능이 없으므로 tmp_seq sequence를 생성하여 아래와 같이 insert하였다. String sql = "insert into article (arti.. 2023. 1. 28.
2023.01.27 jsp 페이지 script문 내에 Session 요청 형식 1. 버튼태그에 로그인 세션 모델(파라미터)의 매개변수로 사용하지 않고 펑션내에서 선언하여 사용 글쓰기 2. 버튼태그에 로그인 세션 모델(파라미터)을 매개변수로 사용하여 펑션내에서 선언하지 않고 사용 글쓰기 아래 그림과 같이 동작! 2023. 1. 28.