본문 바로가기

Programming & Network

(17)
Network 용어정리 Name Discription CentOS a Linux distribution that provides a free and open-source community-supported computing platform, functionally compatible with its upstream NAC Network Access Control DLP Data Loss Prevention : 데이터 손실 방지 IPS 침입 방지 시스템 VPN Virtual Private Network : ㄴ 가상사설망, ISP 즉 제 3자에 정보를 넘겨주지 않고 익명성을 유지하여 인터넷에 접속 ㄴ 익명성이 보장된 상태에서 안전하게 인터넷을 사용할 수 있는 기술 ㄴ 주로 인터넷을 통해 엔드포인트에서 네트워크로의 연결을 암호화 L..
이메일 형식 유효성 검사 리스트 출처: https://ko.wikipedia.org/wiki/%EC%A0%84%EC%9E%90_%EC%9A%B0%ED%8E%B8_%EC%A3%BC%EC%86%8C 로컬 파트 : 전자 우편 주소의 로컬 파트는 아래의 ASCII 문자 중 어느 것이든 올 수 있다: 대소문자 로마자 기본 A부터 Z, a부터 z 숫자 0부터 9 특수 문자 !#$%&'*+-/=?^_`{|}~ 점 (.) 공백과 "(),:;@[\] 문자 괄호 안에 사용되는 주석 (예: john.smith(comment)@example.com, (comment)john.smith@example.com) 도메인 : 이메일 주소 중 도메인 이름은 명확한 지침을 따라야 한다. 호스트명의 요구 사항, 점(.)으로 구분되는 DNS 레이블의 목록, 각 레이블이 ..
JSTL items length size item index 값 확인 - JSTL 강좌 LoopTagStatus varStatus 출처 : http://wiki.gurubee.net/pages/viewpage.action?pageId=26740270& JSTL의 이해 및 활용 1. JSTL의 이해 http://tomcat.apache.org/taglibs/ JSTL이란 JSP 표준라이브러리(JSP Standard Tag Library) 이다. JSP에서 사주 사용하는 기능(반복과 조건, 데이타 관리 포맷, XML 조작, 데이타베이스 액세스)을 구현하는 커스텀 태그 라이브러리 모음이다. 시간, 날짜, 숫자의 포맷이나 문자열 가공등의 처리에서 비즈니스로직과 프리젠테이션 로직을 분리할 수 있게 해준다. JSTL은 EL(Expression Language)를 사용하여 표현한다. 2. JSTL 라이브러리 2.1 JSTL 라이브러리 아래와 같..
small project subject: make my own website with DB purpose: just type everything that I'm thinking and if I want to do something then I can recored about it. needed: - how to make website: html and CSS etc - how to connect website to DB: http://www.tutorialspoint.com/hadoop/ - make it relate to each other - SQL grammar: http://www.h2database.com/html/grammar.html - how to get the information to my website and..
(Mac Eclipse) shortcut System.out.println(); Normally the 'sysout' shortcut is not working in eclipse on os x. But, I'm going to show you how to make it work. first of all, go to Preferences in eclipse. second of all, select General > Keys Third of all, write down 'Content Assist' in type filter textForth of all, put 'alt' and 'space' key in 'Binding' and then 'Apply'! That was all you needed to do for using the funct..
Classes and Objects 출처: https://docs.oracle.com/javase/tutorial/java/javaOO/index.html With the knowledge you now have of the basics of the Java programming language, you can learn to write your own classes. In this lesson, you will find information about defining your own classes, including declaring member variables, methods, and constructors.You will learn to use your classes to create objects, and how to use th..
Language Basics 출처: https://docs.oracle.com/javase/tutorial/java/nutsandbolts/variables.html Variables (변수)As you learned in the previous lesson, an object stores its state in fields.int cadence = 0; int speed = 0; int gear = 1; The What Is an Object? discussion introduced you to fields, but you probably have still a few questions, such as: What are the rules and conventions for naming a field? Besides int, wha..
About Java