목록전체 글 (419)
2swan
MySQL :: Download Connector/J MySQL Connector/J 8.0 is highly recommended for use with MySQL Server 8.0, 5.7 and 5.6. Please upgrade to MySQL Connector/J 8.0. dev.mysql.com 1. MySQL 홈페이지 접속 → DOWNLOADS → MySQL Community(GPL)Downloads 2. Connector/J 선택 3. Platform Independent → ZIP 다운로드 4. mysql-connector-java-8.0.28.jar 복사 5. lib 파일에 붙여넣기
다이내믹 웹 프로젝트 생성 후 WEB-INF 아래에 web.xml 파일이 없을 경우 1. 프로젝트에서 마우스 우클릭 Java EE Tools -> Generate Deployment Descriptor sub 클릭 2. WEB-INF 아래 web-xml 생성 완료
The CentOS ProjectReminder: CentOS Linux 8 is EOL on December 31st Dec 2, 2021 — CentOS Linux 8 will reach End Of Life (EOL) on December 31st, 2021. We recommend migrating to CentOS Stream 8 before that time. See this comparision of CentOS Linux and CentOS Stream for morewww.centos.org1. Centos 공식홈페이지 접속 2. 4가지 항목중 아무거나 선택 3. CentOs-7-x86-64-DVD-2009.iso 클릭 - DVD : 최소 설치에 기본 개발패키지 및 GUI 설치 도구 ..
Oracle VM VirtualBox Welcome to VirtualBox.org! VirtualBox is a powerful x86 and AMD64/Intel64 virtualization product for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers, it is also the only pr www.virtualbox.org 1. VirtualBox 6.1 클릭 2. 운영체제가 Windows 일 경우 Windows hosts 클릭 (운영체제에 맞게 선택) 3. Custom Setup - Create st..
○ 항과 연산자 항(operand) : 연산에 사용되는 값 연산자(operator) : 항을 이용하여 연산하는 기호 항의 개수에 따른 연산자 구분 연산자 설명 연산 예 단항 연산자 항이 한 개인 연산자 ++num 이항 연산자 항이 두 개인 연산자 num1 + num2; 삼항 연산자 항이 세 개인 연산자 (5 > 3)? 1 : 0; ○ 대입 연산자 변수에 값을 대입 하는 연산자 연산의 결과를 변수에 대입 우선 순위가 가장 낮은 연산자 왼쪽 변수(lvalue)에 오른쪽 변수(값) (rvalue)를 대입 int age = 24 // 나이를 의미하는 age 변수에 값 24를 대입함 totalScore = mathScore + engScore; // ① mathScore 값과 영어 점수 engScore 값을 더하..