일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- rinux
- javaee
- autoset
- NCS
- jsp연결
- 데이터베이스
- 이것이 자바다
- Oracle
- php
- Cisco
- 참조타입
- 버추얼머신
- 정보처리기사
- Java
- 네트워크
- sql
- 자바
- 정처기필기
- cisco packet
- VLAN
- 오라클
- 리눅스
- html
- jsp
- ospf
- w3school
- 라우터
- 원형그래프
- ciscopacket
- 네트워크관리사
- Today
- Total
목록JAVA (43)
기록해! 정리해!
이전에 했던 답변형게시판이랑 유사하지만 ref(그룹), level(깊이),parent 가 있어야한다 . parent에서 root는 '0'으로 설정한다. root가 아니면 '부모의 idx'로 저장이된다. 즉 parent가 0이면 새로운 글이라는 의미 from 꼬순언니의 아름다운 블로그 ,,, 1. top에 추가하기 2. 폴더-파일 생성 3. 오라클 테이블 생성 Create table member0822 ( idx int not null primary key, name nvarchar2(10) not null, title nvarchar2(100), etc nvarchar2(500), ref number(6) , board_parent number(6)); Create SEQUENCE oramember IN..
3개의 컬럼을 더 사용한다 1. ref (그룹) 2. re_step (그룹안에서의 순서) 3. re_level (답글의 레벨) 1. 오라클 테이블 생성 Create table member0819( idx int not null primary key, name nvarchar2(10) not null, title nvarchar2(100), ref number(6), re_step number(6), re_level number(6) ); Create sequence member Increment by 1 start with 1001 maxvalue 999999; 2. Top 절대경로, 네비에 링크 추가 String path = request.getContextPath(); 3. Controller는 서블..
º mySQL.sql create table T0808( idx int not null primary key auto_increment, name varchar(20) not null, file varchar(30) not null ); select* from T0808; º form_ok.jsp -- new MultipartRequest(request, realFolder, maxSize, encType, new DefaultFileRenamePolicy()); // out,print 는 웹에 띄우기 System.out.println은 콘솔에 띄우기 º form_ok.jsp -- 파일저장 저장되는 공간 : C:\Users\jisoo\eclipse-workspace\.metadata\.plugins\or..
1. 이클립스의 웹프로젝트에 드라이버 복사 . 2. JAVA 의 lib에 붙여넣기 3. 톰캣에 복사 1. 생성 2. 오토셋에 있는 데이터베이스 이름으로 사용 database와 url 이름 같게. 3. 저장하기 º 쿼리문 작성하기 --테이블생성 Create table member( id varchar(50) not null primary key, passwd varchar(16) not null, name varchar(10) not null, reg_date datetime not null ); Create table test( num_id int not null primary key auto_increment, title varchar(50) not null, content text not null )..
º JSP --> 액션태그 --> 빈 (Bean) º XML 문법 우리 : 단독태그도 무조건 닫아줘야한다 (중간에 쓸 게 없으면 그냥 닫는 것) 1. include -includeTestForm -includeTest -includedTest 액션태그 iclude를 사용했을 때 컴파일 확인을 위해 서블릿 보기 C:\Users\jisoo\eclipse-workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\jsp0717\org\apache\jsp -includeTest : false는 클래스의 위치 컴파일되는 위치를 확인. -includedTest :includeTest는 컴파일된 결과만 가져온다 1) inc..