일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- string
- 생성자
- Vector
- eclipse
- hashCode
- hamobee
- ALTER
- value
- Hashtable
- class
- abstractclass
- object
- arguments
- Eureka
- overload
- 추상클래스
- start()
- 객체형변환
- MSA
- run()
- garbagecollection
- super
- methodArea
- Polymorphism
- reference
- fuction
- 콘크리트클래스
- concreteclass
- override
- constantnumber
- Today
- Total
목록분류 전체보기 (259)
뇌운동일지
서블릿 1. init( ) getArticleCount 글목록 -> getArticles(s,e) 2. Action : ① 받는다 ② 페이징 관련 변수, 실행 ③ DAO, 실행 ④ 데이터 request 지정 ⑤ 이동 3. view : list.jsp 4. Mapping : CommandPro.properties에서 mapping code 추가 작업4) 글보기 1. DAO : ① 조회수 증가 ② 해당글 반환 2. Action : ContentAction ① 받는다 : 글번호, 페이지번호 ② DAO참조 ③ bm 글 호출 ④ 데이터 request에 저장 ⑤ view값 리턴 3. view : content.jsp 4. Mapping : 경로와 action class mapping 후, test 작업5) 수정폼 ..
한글지원 EUC-KR : 라틴 + 완성형 한글 (2B) UTF-8 : 라틴 + 유니코드 (1~3B) contentType VS pageEncoding contentType의 charset :http client (웹 브라우저)가 받아볼 페이지의 인코딩 방식 ( http 헤더에 기록되어 있음 ) pageEncoding : JSP 파일(페이지)에 기록된 소스코드 자체의 인코딩 방식 pageEncoding은 jsp페이지 구현, contentType은 응답에 대한 인코딩 buffer default : 8KB flush하면 상대편에 전달 clear하면 그냥 비워짐 isErrorPage = "true"일때만 exception객체 사용 가능 response한 결과물을 browser가 해석 server가 client에..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/kRXwe/btqEAMu6jez/GKHBHdSk03oSdDtZVM1Tf0/img.png)
MVC2 ( model2 ) => "팀 작업에 적합한 구조" controller = Front Controller + command model = DAO + DTO view = JSP view는 디자이너가 model은 프로그래머가 controller는 그 둘을 연결 ============================================== 서버풀 : 범위가 더 넓은 풀이 됨. 서버풀은 연동을 웹서버가 하는 것이므로 연동드라이버가 톰캣 서버에 존재하고 웹프로젝트에도 있으면 충돌이 일어난다. - 오라클 서버에서 ojdbc6.jar 를 검색하여 톰캣/lib에 넣는다. cmd : command => Action class 라고도 부른다 web.xml
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/sbaSh/btqEzig13VC/GnqscD0ACxJT4ILTja0CKk/img.png)
package : 함수나 프로시저를 묶어서 사용 선언부(명세부) : 프로토타입( 원형만 선언 ) 몸체부 : 내용을 기술 ( 정의 ) ed pack1 create or replace package pack1 is procedure test2 (v_stu_no in student.stu_no%type, v_stu_grade in student.stu_grade%type); function test6 (v_enr_grade in number) returnchar ; end ; / show errors; create or replace package body pack1 is procedure test2 (v_stu_no in student.stu_no%type, v_stu_grade in student.stu_..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bbEHB1/btqEx0BxpeB/Vi5qzkMfLv1KUKQWuKqYa0/img.png)
test2 create or replace procedure test2 (v_stu_no in student.stu_no%type, v_stu_grade in student.stu_grade%type) is begin update student set stu_grade = v_stu_grade where stu_no = v_stu_no ; end test2; / test3 create or replace procedure test3 (v_stu_no in student.stu_no%type, v_stu_name out student.stu_name%type) is begin select stu_name into v_stu_name from student where stu_no = v_stu_no ; en..