설치다운로드 : https://www.eclipse.org/downloads/ 설치 : 압축해제 설정eclipseworkspace 지정 : eclipse.ini 변경 C:\dev_pack\x64\java\jdk1.8.0_121\bin\javaw.exe -startup plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar --launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.300.v20150602-1417 -data C:\dev_pack\x64\apps\eclipse\eGovFrameDev-3.6.0-64bit\workspacemaven디렉토리 지정 설정(P..
계층구조 쿼리에 사용.참조 : http://msdn.microsoft.com/en-us/library/ms186243%28v=sql.105%29.aspx sampleWITH CTE_AE_CODE_H AS ( SELECT * , 0 AS LEVEL , CAST(RANK AS DECIMAL(20)) AS SORT --소팅(문자열로 변환 후 소팅해야 함) , CAST(CODE_NAME AS VARCHAR(1000)) AS CODE_PATH FROM IAMS.DBO.AE_CODE_H WHERE 1 = 1 AND UP_CODE_ID = '*' --AND UP_CODE_ID = 'ROOT_ASSET_TYPE' UNION ALL SELECT A.* , R.LEVEL + 1 AS LEVEL , CAST(R.SORT *..
Eclipsedownload : http://www.eclipse.org/downloads/ plugins : Eclipse 메뉴의 Help > Eclipse Marketplace... 를 이용하면 편하다. EGitEGit is an Eclipse Team provider for the Git version control system. Git is a distributed SCM, which means every developer has a full copy of all history of every revision of the code, making queries against the history very fast and versatile.http://download.eclipse.org/egit/u..
자주 사용하는 Tomcat을 2개 동시에 띄워보자. 00. Tomcat 및 Java 다운로드. Tomcat : http://tomcat.apache.org/Java : http://www.oracle.com/technetwork/java/javase/downloads/index.html 01. 디렉토리 구조 및 설치. D:/WAS/java/jdk/was /tomcat /bin /lib /instance1 /conf/logs/temp/webapps/work /instance2/conf/logs/temp/webapps /workstartTomcat_1.bat startTomcat_2.batD:/WAS/java/jdk - java 설치(압축해제)D:/WAS/was/tomcat - tomcat 설치(압축해제)i..
Git 설치 참조 - http://www.jami.name/400 이미 사용중인 SVN 을 Git 으로 바꿔보자.주의 : console 과 GUI 툴을 병행해서 사용했기 때문에 오류 발생할 수 있음. 디렉토리의 파일을 잘 살펴보자. 1. clone.SVN repository 를 Git 으로 clone. $git svn clone file:///tmp/ -T trunk -b branches -t tags git svn clone file:///cygdrive/e/00.svn_repo/jami ~/Z/00.jami또는git svn clone svn://localhost/jami ~/Z/00.jami -T trunk -b branches -t tags : -s 옵션으로 대체 가능하다.하지만 난 trunk/br..
버전관리 되지 않던 로컬 특정 디렉토리를 Git으로 관리해 보려고 아래와 같이 했다. (원격 연결하지 않음) 1. 설치.Git : http://msysgit.github.com/TortoiseGit : http://code.google.com/p/tortoisegit/ 2. 사용자 설정git config --global user.name "John Doe" git config --global user.email johndoe@example.com --global 옵션 없이 각 프로젝트 마다 다른 사용자 설정할 수 있음. 3. 원격저장소 생성 및 init mkdir testRepo cd testRepo git init --bare 4. 저장소 복제git clone /로컬/저장소/경로탐색기에서.. 마우스 R..
TmaxSoft JEUS 로그파일 설정 로그파일 설정로그 디렉토리 변경 -Djeus.log.home=Z:/jeus50/logs기본은 [JEUS 설치 DIR]/logs 디렉토리에 로그 파일이 쌓인다. 이를 바꾸기 위해 위 옵션을 파일의 실행부분에 추가한다. 로그파일 설정 con1_handler1 INFO false 기본은 각 컨테이너별 일별 로그파일이 생성된다.로그파일 모티터링하기 귀찮아 컨테이너별 하나의 로그파일이 생성되도록 수정. 의 로깅 노드를 위와 같이 세팅.false 로 지정했기 때문에 WAS 재시작시 기존 로그는 없어진다. 로컬/개발서버에서는 로그파일 크기가 작기 로그파일 보관이 필요없기 때문에 위와 같이 사용해도 되지 싶다.
TmaxSoft JEUS - WebAdmin 설정.참고 : http://technet.tmax.co.kr/kr/edocs/jeus/60/server/chapter_server_conf.html#d4e1177 ... ... true 192.168.*.* 211.180.1.* ... ... * : 접근가능한 IP를 세팅할 수 있음. (보안을 위해 설정 후 사용토록 하자) * 기본 port 는 9744 : [jeus설치DIR]/bin/jeus.properties.cmd 파일 JEUS_BASEPORT 값의 +8 이 webadmin 기본port임.
JEUS5 에 SSL 적용. (localhost)/bin/keytool 명령어를 사용한다. SSL Keystore 생성keytool -genkey -alias jeusssl -keyalg RSA -keysize 2048 -validity 1000 -keystore D:\JEUS5.0\config\\sslkeystoreSSL Truststore 생성keytool -export -alias jeusssl -keystore D:\JEUS5.0\config\\sslkeystore -rfc -file D:\JEUS5.0\config\\jeusssl.cer keytool -import -alias jeussslcert -file D:\JEUS5.0\config\\jeusssl.cer -keystore D:\JEUS..
JAMWiki 설치JAMWiki - Java-based Wiki engine 참조URL : http://jamwiki.org/wiki/en/Installation 준비Tomcathttp://tomcat.apache.org/download-70.cgi (7.x)JAMWikihttp://jamwiki.org/wiki/en/JAMWiki_Release_Archive MariaDB(Optional) - An enhanced, drop-in replacement for MySQL.MySQL 대신 MariaDB를 사용하자. MySQL(Optional) http://www.mysql.com/downloads/mysql/ (mysql-5.5.28)MSI Installer 를 이용하자. zip 파일의 경우 일부DB테이블..
mplayer가 통합자막(한글,영문)으로 된 자막파일을 제대로 처리하지 못하고, 동시(한글이 잠깐보이고 바로 영문이 보이는)에 보여준다. 이런 문제를 해결하려면 자막을 분리해야 하는데, 찾다보니 그런 수고를 줄이도록 스크립트를 만들어 논 게 있더라. 출처 : http://heli.textcube.com/162 #!/bin/bash SUB_SRC=`cat "$@" | tr -d "^M"` SUB_NAME=${@%.*} if [ -f "$SUB_NAME.old" ];then echo "$SUB_NAME.old file exist" exit fi mv "$@" "$SUB_NAME.old" SUB_TEXT="`echo "$SUB_SRC" | sed "s/^ $SUB_NAME.smi echo "$SUB_TEXT"..
출처 : http://www.psoug.org/reference/analyze.html 다음 내용은 최신 버전이 아닐 수 있습니다. 최신 버전은 위 사이트를 참조하세요. Note: Do not use the COMPUTE and ESTIMATE clauses of ANALYZE to collect optimizer statistics. These clauses are supported for backward compatibility. Instead, use the DBMS_STATS package, which lets you collect statistics in parallel, collect global statistics for partitioned objects, and fine tune your..
상당히 괜찮은 프로그램이다. 사이트 : http://filezilla-project.org Welcome to the homepage of FileZilla, the free FTP solution. Both a client and a server are available. FileZilla is open source software distributed under the terms of the GNU General Public License - from http://filezilla-project.org/index.php 예전엔 여러 ftp client 프로그램을 사용했었는데 요즘은 이넘만 사용한다. GPL 라이센스, 무료라는 얘기다. ^^ 설치가 아닌 zip 형태로 된 압축만 풀어 바로 사용할 수 있..
SimpleCalc.java - 예제의 원본 출처를 알 수 없습니다. -_-; 큐(queue),스택(stack) 을 이용해서 괄호'(' 까지 있는 산식을 계산해 보자. queue : 먼저 입력된 값을 먼저 반환 stack : 마지막으로 입력된 값을 먼저 반환 사용 queue : 계산식의 숫자, operator statck : operator, 계산된 값, 계산할 값 계산식 문자열을 왼쪽에서 부터 읽어서 숫자면 queue에 operator 라면 statck에 담는다. 새로운 operator를 stack에 담을 때, stack에 이미 있는 operator 의 우선순의가 같거나 높으면 stack의 operator를 queue로 옮긴 후 새로운 operator를 stack에 담는다. queue엔 모든 숫자, o..
원본 : http://docs.springnote.com/pages/685039 목차 개요 설정 사용 문제점 해결 weblogic error loading fckstyle.xml 참고문서 개요# 괜찮은 웹 편집기다. http://www.fckeditor.net/ 에서 FCKeditor 최신 버전과 java버전을 다운로드 한다. FCKeditor 최신버전을 적당한 위치에서 압축해제 한다. java 버전의 src(소스)를 소스 디렉토리에 넣는다. 또는 jar 파일을 WEB-INF/lib 디렉토리에 넣는다. 설정# fckconfig.js 파일에서 서블릿이 호출되도록 다음 6개 라인을 수정합니다. FCKConfig.LinkBrowserURL = FCKConfig.BasePath + 'filemanager/bro..
출처 : http://www.psoug.org/reference/dbms_utility.html 다음 내용은 최신 버전이 아닐 수 있습니다. 최신 버전은 위 사이트를 참조하세요. General Information Purpose Container for a group of unrelated utility procedures and functions First Availability 7.3.4 Source {ORACLE_HOME}/rdbms/admin/dbmsutil.sql Built-in Data Types -- array of anydata TYPE anydata_array IS TABLE OF ANYDATA INDEX BY BINARY_INTEGER; -- Lists of database links ..
출처 : http://www.psoug.org/reference/procedures.html 다음 내용은 최신 버전이 아닐 수 있습니다. 최신 버전은 위 사이트를 참조하세요. General Related Data Dictionary Objects error$ source$ DBA ALL USER dba_arguments all_arguments user_arguments dba_errors all_errors user_errors dba_object_size all_object_size user_object_size dba_procedures all_procedures user_procedures dba_source all_source user_source System Privileges Related ..
열기. select. select seq, title, u_seq, rg_dts from $table_name$ where rownum parameterClass 에 세팅된 HashMap 은 jsp등에서 넘겨진 파라미터를 담고 있는 객체. resultClass 에 세팅된 LinkedHashMap 은 쿼리의 칼럼 순서대로 넣기 위해 사용하였다. java.util.Map 타입과 비슷한(set, get 있는) 객체를 사용해야 한다. (하나의 row를 얻을 때는 xml 문자열 데이터를 얻을 수 있다.) 같은 이름의 식별자에 자동 세팅된다. $식별자$ - 문자열 대체. #식별자# - 해당 타입으로 대체. ex) #rownum:NUMERIC:0# - rownum은 숫자 타입이고, null 일 경우 0으로 대체된다...
출처 : http://www.psoug.org/reference/import.html 다음 내용은 최신 버전이 아닐 수 있습니다. 최신 버전은 위 사이트를 참조하세요. Importing Schemas Note: Deprecated ... replaced by DataPump Import help imp -help imp -help Import Authority imp userid= imp uwclass/uwclass Import File Name imp userid= FILE= imp uwclass/uwclass file=c:\temp\uw_test.dmp Log File Name imp userid= LOG= imp uwclass/uwclass log=c:\temp\uw.log Buffer Size -..
- Total
- Today
- Yesterday
- 헌혈
- oracle
- Git
- 프로젝트
- 정부과천청사
- 파워콤해지
- 출근길
- 오라클
- 낭패
- ubuntu
- Java
- 무료 프로그램
- 바이크
- 법무부
- VMware
- 일하는 곳
- 금연
- EditPlus
- iBATIS
- 안드로이드 앱
- 김용
- 윈도우
- 액땜
- 충동구매
- 짜증
- GB-P100
- 최대 메모리
- Eclipse
- connect by
- 출근
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |