16년 4월 기준. getAbsolutePath의 값이 C:\eclipse로 리턴되는 문제 // Run-Run Configurations의 Arguments 탭의 Wroking directory를 Other로 하고 해당 Workspace의 프로젝트로 잡아준다. // Preferences-General의 Show heap status에서 현재 메모리 힙을 볼 수 있다. // Preferences-Java-Editor-Folding의 Enable folding 자동접기 해제하면 메모리 절약 된다고 한다. // mylyn으로 작업 관리할 수 있다. 예전엔 추가설치였는데 이제는 디폴트. redmine 연동 가능. // 무료 ERD 프로그램 제공. ERDMaster. 추가설치 해야 함. ERWin 대신 사용할만 ..
22년 9월 기준. 인증서 설치 Help-SSL Proxying-Install Charles Root Certificate 인증서 가져오기 마법사-저장소 위치 '로컬 컴퓨터'-다음-모든 인증서를 다음 저장소에 저장-찾아보기 '신뢰할 수 있는 루트 인증 기관'클릭-확인-다음-마침 iOS 설정-Wi-Fi-프록시 구성-수동-서버 포트(Help-Install Charles Root Certificate on a Mobile ...) 주소창 chls.pro/ssl 입력. 인증서 설치. 설정-일반-정보-인증서 신뢰 설정-루트 인증서 정체 신뢰 활성화 // iOS 10이상 활성화가 필수. Proxy-Windows Proxy 비활성화 Proxy-SSL Proxying Settings-Enable SSL Proxying..
16년 4월 기준. Excel 업로드 관련 라이브러리는 poi, jxl이 있음. jxl http://www.andykhan.com/jexcelapi // 사이트 없어짐. JExcelApi v2.6.12까지 확인. jxl.jar 파일 http://jexcelapi.sourceforge.net/ // sourceforge에 있음. jxl이 더 빠르다고 확인. poi http://poi.apache.org/ // SDS anyframe도 Apache POI사용. // xlsx를 위해서는 poi-ooxml 필요.
15년 5월 기준. svn 경로 /etc/subversion svn 프로젝트 경로 /etc/subversion/Project_Web svn 실행 svnserve -d -r /etc/subversion svn 프로세스 확인 ps -ef |grep svnserve svn 프로세스 종료 kill -9 프로세스 번호 svn 계정 /etc/subversion/Project_Web/conf/passwd medi choo yongsik yes witches svn 저장소 생성 svnadmin create --fs-type fsfs /etc/subversion/Project_Web svn 저장소 권한 chown -R root:root /etc/subversion/Project_Web svn 자동 등록 vi /etc/r..
15년 5월 기준. [root@kserver145-48 /]# mount -a // 전부 마운트 [root@kserver145-48 /]# mount /dev/sda3 on / type ext4 (rw) proc on /proc type proc (rw) sysfs on /sys type sysfs (rw) devpts on /dev/pts type devpts (rw,gid=5,mode=620) tmpfs on /dev/shm type tmpfs (rw) /dev/sda1 on /boot type ext4 (rw) none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw) sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (..
15년 5월 기준. /usr/local/apache/conf/httpd.conf 에서 www. 설정을 해주면 아이피에도 www.이 붙음. .htaccess에서 설정하기로 결정 .htaccess # Rewrite Module RewriteEngine On # www. 자동 붙임 RewriteCond %{HTTP_HOST} ^studysenior\.com [NC] RewriteRule ^(.*)$ http://www.studysenior.com/$1 [L,R] .htaccess RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.studysenior\.com$ [NC] RewriteCond %{HTTP_HOST} !^$ RewriteRule ^(.*)$ http://www..
15년 7월 기준. Apache conf폴더의 httpd.conf NameVirtualHost *:80 ServerName intra.studysenior.com Redirect / http://www.naver.com ServerName 186.studysenior.com Redirect / http://www.daum.net ServerName 121.78.79.186 Redirect / http://121.78.79.186 Redirect / http://121.78.79.186 // 작동하지 않음. ServerName에 186이 있을경우, 186으로 이동. // NameVirtualHost *:80 꼭 선언해줘야된다. 정의하고 시작. // DocumentRoot 설정 가능 ServerName wi..
16년 4월 기준. pom.xml org.codehaus.jackson jackson-core-asl 1.8.0 jar compile org.codehaus.jackson jackson-mapper-asl 1.8.0 jar compile org.codehaus.jackson jackson-xc 1.8.0 jar compile web-servlet.xml 정상적인 주입이 안될때 프로젝트 클린 또는 project java EE Module Depencies 체크 해제후 다시 체크 -- 서버 재실행
카멜 표기법 단어와 단어가 이어서 변수명이 사용될때 두번째 단어의 첫 글자를 대문자로 써주는 방식. 카멜이 낙타라는 의미를 가지며 낙타의 혹과 비슷해서 붙여짐. 자바 변수는 카멜 표기법 사용. ex) string userName, int userNum; 단어가 하나라면 전부 소문자로 사용 ex) char point; 파스칼 표기법 모든 단어의 첫번째 문자를 대문자로 써주는 방식. 일반적으로 가장 많이 사용되는 방식중 하나. 자바 클래스는 파스칼 표기법 사용. ex) string UserName, int UserNum, char Point; 헝가리안 표기법 MS사의 헝가리안 프로그래머가 창시. MS 계열에서 헝가리안 표기법 사용. 변수를 표기할때 변수명 앞에 자료형을 바로 알수 있게 선언하는 방식. ex)..