[Android] 맥북에서 android Home 설정 vi ~/.bash_profile => bash_profile 을 수정 모드로 열어서 하기 데이터 적용 export ANDROID_HOME=/Users/$USER/Library/Android/sdk/ export PATH=$PATH:$ANDROID_HOME export PATH=$PATH:$ANDROID_HOME/tools export PATH=$PATH:$ANDROID_HOME/platform-tools [Eclipse] 메모리(Heap Memory) 모니터링 켜기 ※ "환경 설정" 선택 ※ "General" 에 'Show heap status' 에 체크 박스 체크 ※ 하단에 모니터링 활성화 됨 [Eclipse](Error) Problems encountered during text search Eclipse 에서 검색 기능 사용 시 아래와 같이 "Problems encountered during text search" 발생 하면서 검색이 중단된다. 이럴 경우에 Eclipse 프로젝트을 선택 후 마우스 우측 버튼 클릭 > refresh 해주고 다시 검색 시 해당 에러가 사라진다. [Spring](Error) Ambiguous mapping found. Cannot map '' bean method org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0': Invocation of init method failed; nested exception is java.lang.IllegalStateException: Ambiguous mapping found. Cannot map 'mobileController' bean method public java.lang.String co.kr.test.mobile.controller.MobileController.. [MySQL] 문자와 숫자 등 타입 변환하는 연산자(cast) 데이터의 타입이 다른 경우에 발생하는 이슈에 대응하기 위한 연산자 ※ Data Type- DATETIME : 'YYYY-MM-DD HH:MM:SS'- DATE : 'YYYY-MM-DD'- TIME : 'HH:MM:SS'- CHAR : String- SIGNED : Integer(64bit), 부호 사용 가능- UNSIGNED : Integer(64bit), 부호 사용 불가- BINARY : binary String ※ 숫자를 문자로 변환SELECT CAST(1 AS CHAR(10)) AS testChar ※ 문자를 숫자로 변환SELECT CAST('1' AS SINGNED) AS testInt [Eclipse] Java 코드 자동 완성 (Templates) Eclipse 에서 Java 개발 중 "sysout" 입력 후 자동 완성(Content Assist) 하는 경우 "System.out.println();"이 자동 완성 된다.해당 Templates 설정하는 방법이다. ※ 이클립스 상단 메뉴바 "Eclipse > 환경설정(Preference)" 선택 ※ "Java > Editor > Templates" 에서 새로 생성하거나 수정 [Eclipse] 이클립스 whitespace 보기 빈칸 및 개행문자 정보를 봐야 할 경우에 사용하는 방법이다. ※ "환경 설정" 선택 ※ "General > Editors > Text Editors" 에 'Show whitespace characters' 에 체크 박스 체크 ※ CSS - "Web > CSS > Editor" 에서 'Indent using spaces' 선택 및 'Indentation size' 4로 설정 ※ HTML - "Web > HTML Files > Editor" 에서 'Indent using spaces' 선택 및 'Indentation size' 4로 설정 ※ XML - "XML > XML Files > Editor" 에서 'Indent using spaces' 선택 및 'Indentation size' 4로 설정 ※ Java.. [Eclipse] 이클립스 tab을 space로 변경 이클립스에서 탭을 누르면 스페이스바 4번으로 바꾸는 방법이다. ※ "환경설정" 선택 ※ "Genral > Editors > Text Editor" 에 'Insert spaces for tabs' 체크박스 체크 및 'Displayed tab width'를 4로 설정 이전 1 ··· 6 7 8 9 10 11 12 ··· 17 다음