일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SQL Developer
- Oracle 오류
- SQL
- The Network Adapter could not establish the connection
- SEQUENCE
- Oracle 18c
- Python
- ORA-1017
- Kakao 지도 API
- 유스케이스 다이어그램
- 10fastfingers.com
- 카카오맵 API
- Jupyter Notebook
- typing test
- 데이터베이스 접속
- CSV
- database
- python 기초
- MySQL
- tuple
- 매일 타자연습
- oracle
- 자바
- Java
- Set
- Usecase Diagram
- 카카오맵
- oracle 11g
- Kakao Oven
- 카카오 오븐
- Today
- Total
목록P/Web (8)
Another Brain

google Colaboratory https://colab.research.google.com Google Colaboratory colab.research.google.com ## csv파일 불러오기 url을 클릭하면 이미 연결되었다면 아래와 같은 텍스트가 뜬다. (한번만 연결하면 안해도 됨) " Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True). " #불러올 파일의 경로를 filename 변수에 저장 filename = '/content/drive/MyDrive/camping_ko.csv' # pandas read_csv로..
-- 개발중 소스코드 디버그 콘솔창 출력 System.out.println("로그인 요청"); System.out.println(memberId + ", " + memberPw); >> 개발시에는 디버그 정보 확인하는데 도움받음 >> 개발이 완료(서비스 운영) : 콘솔창에 출력...문제가 많음 ## 로그처리를 위한 api -- log4j, slf4j, logback 등 -- 표준화, 환경설정 사용, 로그 레벨 설정 -- 개발중, 운영중 환경설정만 변경 : 효율적 관리 가능 -- 로그레벨 >> 1. error : 요청 처리 오류발생 표시 >> 2. warn : 처리 가능한 문제 경고 표시 >> 3. info : 상태 정보 표시 >> 4. debug : 개발시 디버그 정보 표시 >> 5. trace : 트랙..
프로퍼디 . 빌더. 이름.이름.빌드 ## 2일차 진행 상황 -- View Controller Service -- View >> JSP 동적 페이지 사용하기 : => src/main/webapp/WEB-INF/jsp> => application.properties view resolver 환경설정 => pom.xml 의존관계 추가 >> static 문서 사용하기 : html, css, js, img => src/main/resource/static> => 서브폴더 관리 >> 응답설정 정보 사용하기 => JSP EL, JSTL -- Controller >> 요청매핑 : => @RequestMapping(value = "/member/size", method = RequestMethod.POST) => @Po..

. ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ -- Spring Tool Suite (STS) -- eclipse marketplace 추가 설치 -- sts 별도 설치 -- spring.io 웹에서 프로젝트 생성 방법 ## 다운로드 설치 1. STS download -- https://spring.io/ -- .jar >> power shell >> .jar 파일 윈도..
FrontController / Servlet 3.x Annotation / Connection Pool : DataSource / HttpSesssion getOutputStream() ServletOutputStream : byte단위 getWriter() java.io.PrintWriter ## 회원관리 Controller 클래스 -- 요청-응답 제어 담당 클래스 -- package com.work.controller; -- MemberControllerServlet -- FrontController ## 회원관리 서비스 클래스 -- 업무로직 담당 클래스 -- 로그인, 회원가입 등 서비스 구현 -- package com.work.service; -- MemberService.java ## 회원 도메..
웹개발환경 / CGI / 웹 프로젝트 구성요소 및 폴더 구조 / Servlet API / Servlet 작성 -- 작업폴더 : C:\00.practice\workspace_servlet >> 웹 개발 위한 eclipse 환경설정 >> 한글인코딩 : encoding, spelling, utf-8 >> Java : jdk1.8.202 (Install JRE) >> Server : tomcat8.5 ## Servlet & JSP -- 자바 기술을 활용한 웹어플리케이션 -- Web Site : static contents 서비스 -- Web Application : static + dynamic contents ## CGI(Common Gateway Interface) -- dynamic contents(동적 ..