Spring + tiles

Spring + tiles 1.step pom.xml add dependence <!– Tiles –> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-jsp</artifactId> <version>${org.apache.tiles.version}</version> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-core</artifactId> <version>${org.apache.tiles.version}</version> </dependency> 2.step servlet-context.xml add bean

FreeRDP Build (for WINDOWS)

FreeRDP Build (for WINDOWS) 1. FreeRDP download https://github.com/FreeRDP/FreeRDP 2. openssl install https://code.google.com/archive/p/openssl-for-windows/downloads\_ http://zetawiki.com/wiki/%EC%9C%88%EB%8F%84%EC%9A%B0_\_openssl\_%EC%84%A4%EC%B9%98_ cmake 5.

error: redefinition of ‘struct timespec’ [C 에러]

error: redefinition of ‘struct timespec’ log c:mingw/include/pthread.h:320:8: error: redefinition of ‘struct timespec’ struct timespec { ^ In file included from c:mingwincludetime.h:53:0, from c:mingwincludepthread.h:219, from test1.c:2: c:mingw/include/parts/time.h:105:8: note: originally defined here struct timespec […]

maven log4j setting

1 step : pom.xml -> add jar setting <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> 2 step : create config folder (source folder) (root directory ) 3 step : create properties file (log4j.properties) –> […]

window 단축키

window key E 탐색기 샐행 F 검색창 실행 R 실행청 실행 D 모든 창 최소화 M 모든 창 최소화 Shift + M 최소화 창 최대화 L 컴퓨터 잠금 Pause/Break 시스템 등록정보

오라클 테이블 유용한 정보 쿼리

원문 : [오라클] 테이블 인덱스, 컬럼, 커멘트 정보 얻는 쿼리 출처 : http://blog.naver.com/bluegriffin/40028654085 — 오브젝트 조회 SELECT * FROM ALL_OBJECTS WHERE OBJECT_NAME LIKE ‘명’ — 테이블 조회 SELECT * FROM ALL_TABLES WHERE […]

ORACLE lock

oracle lock 락이란 멀티유정가 사용한는 데이터 베이스 환경에서 Concurrency 와 Cosistency, 그리고 무결성유지하기 위한 기능이다. 락 유저락 시스템 락

VI Editor 특수문자 입력

명령모드에서 :dig를 입력 출력창에서 입력하고자 하는 문자 옆 두 숫자를 기억 편집모드에서 Ctrl + k 입력 –> 2에서 기억했던 숫자 코드 입력

vim 숫자 중가 입력 (making a list of numbers)

reference site : http://vim.wikia.com/wiki/Making_a_list_of_numbers key step 명령 모드로 진입 :put = range({start number},{end number }) ex) :put = range(1,10)