분류 전체보기 (202) 썸네일형 리스트형 SVN 환경설정 저장소 생성 : svnadmin create c:/svn_repository/private 사용자 생성 및 권한 C:\svn_repository\private\conf authz : UserGroup 을 만든다. passwd : User 와 Password 를 설정한다. svnserve.conf : User 정보를 Password 와 authz 에서 얻어 올것인가를 선택한다 password-db 와 authz-db의 주석을 해제 했음. ServerConfiguration Server 설정 방법에는 몇가지 종류가 있습니다. 1. Commend-line Client Commit : $ svn commit -F log_msg.txt --no-auth-cache --no-auth-cache : Cache 하지 .. Swing UI 구조 Swing의 화면을 만드는 기본 방법. Container를 만든다. Layout을 설정한다. / Panel을 붙인다. /Widget을 붙인다. Panel을 붙인다. / Widget을 붙인다. Layout을 설정한다. / Widget을 붙인다. Widget을 붙인다 / Panel을 붙인다 Jad 설정 1. Jad를 D:\Utility\jad 폴더 아래에 위치 시킵니다. 2. Jadclipse를 다운. 3. Eclipse Plugins 폴더에 위치 시킵니다. 4. Eclipse를 시작 합니다. 5. Eclipse Preferences jad 설정을 다음과 같이 합니다. D:\Utility\jad\jad.exe C:\Documents and Settings\Administrator\.net.sf.jadclipse method Overloading 시 Pattern 을 이용하여 중복을 제거하기. 저의 실수를 이야기 하고자 합니다. 몇일간 Source 수정을 하다 생성자가 하나 더 필요해서 어떻게 하면 중복 되지 않게 만들까 하고 고민 했습니다. 그런데 별다른 수가 생각나지 않아서 아래와 같이 하였습니다. public Connection getConnection(){ try { loadDriver(); Connection conn = DriverManager.getConnection(StandAloneBatchConstants.getDRIVER_URL(), StandAloneBatchConstants.getDATABASE_USER(), StandAloneBatchConstants.getDATABASE_PASSWD()); preMethodCallProcedure(conn); return conn; .. arraycopy System Class의 Method는 Static 이고 생성자도 없다. arraycopy System.arraycopy void java.lang.System.arraycopy(Object src, int srcPos, Object dest, int destPos, int length) Copies an array from the specified source array, beginning at the specified position, to the specified position of the destination array. A subsequence of array components are copied from the source array referenced by src to the destin.. Unsupported major.minor version 50.0 Ant Build 한 jar를 넣고 Application을 실행 하고자 하였습니다. 그런데.. 다음과 같은 Error를 뱉었습니다. java.lang.UnsupportedClassVersionError Unsupported major.minor version 50.0 왜 일까??? 한참을 고민했습니다. 분명 library도 jdk1.4.2_16으로 설정 되어 있는뎅... 갑자기 생각났습니다... 왜 이랬던 것인지. 50.0 은... jdk 1.6 버전 으로 Compile 되었다는 것이니깐.. Eclipse의 Project가 1.6 level로 설정이 되어서였군.. Properties > Java Compiler > JDK Compliance level 을 1.4로 바꾼 후 Test 하였습니다. 해결~ Procedure 목록 보기 모든 Procedure 보기 select * from all_procedures User Procedure 보기 select * from user_procedures Procedure 내용 보기 select * from user_source where name = 'user_procedures' DB Locking 오늘 DB Locking 이 되었습니다. 상황은 이러합니다. 제가 Orange로 특정 Table을 Update 한 후 Commit 하지 않은 상태였습니다. 그때 다른 Application에서 해당 Table을 수정하는 Procedure가 동작하였습니다. 해당 Table이 이미 저의 Orange에 의해서 Locking 상황이므로 Application은 무한 대기중 이었던 것입니다. 이전 1 ··· 12 13 14 15 16 17 18 ··· 26 다음