글꼴 바꿨는데 콘솔, 로그캣 부분 글꼴은 바뀌지 않을 때
File > Settings > Editor > Colors & Fonts > Console Font
인코딩 변경
File > Settings > Editor > File Encodings
IDE Encoding, Project Encoding, Default encoding for properties files
전부 원하는 거로 바꿔주고 (예) x-windows-949 -> UTF-8)
[v] Transparent native-to-ascii conversion 선택해준다.
(*.properties 확장자 한글 깨질 때 이 설정 선택해주면 자동 변환)
* IntelliJ IDEA Spring boot logback 한글 깨질 때
C:\Program Files (x86)\JetBrains\IntelliJ IDEA 2017.1\bin\idea64.exe.vmoptions 파일에 옵션 추가
(32비트는 idea.exe.vmoptions 파일) - 옛날 방식
Use Find Action(⇧⌘A or Shift + Ctrl + A) Actions에서 Edit Custom VM Options... 선택해서 파일 열리면 맨 아래에 옵션 추가
-Dfile.encoding=UTF-8
이때 다시 실행 시 잘 나오던 tomcat 한글이 깨질 때는
Run > Edit Configurations... > Tomcat Server > Tomcat 9 - VM options: -Dfile.encoding=UTF-8 추가
* 그래도 안 된다면?! 톰캣이 한글판이라서 깨지는 것! 영어 버전으로 변경
Run > Edit Configurations... > Tomcat Server > Tomcat 9 - VM options: -Duser.language=en -Duser.region=US
Change Memory Settings (IntelliJ IDEA Ver. 2020.2)
편한 만큼 메모리 잡아먹는 귀신이다.
기본 설정으로는 얼마 못 가 아래와 같은 경고를 마주하게 된다.
Low Memory
The IDE is running low on memory and this might affect performance. please consider increasing available heap.
메모리 할당량을 변경해주자.
Help > Change Memory Settings
Maximum Heap Size: 4096MB (자신의 메모리에 맞게 알맞게 설정해 준다)
[Save and Restart]
IDE 메모리 실시간 확인은 IDEA 맨 아래 오른쪽 보면 상태바에서 우클릭 메뉴에서 Memory Indicator 체크!
망할 자동 import(Ctrl + Alt + O) 원하는 대로 안 될 때
File > Settings > Editor > General > Auto Import - Java
Insert imports on paste: All (Change)
아래 모두 체크
[v] Show import popup
[v] Optimize imports on the fly
[v] Add unambiguous imports on the fly
탭, 공백(빈칸) 표시
File > Settings > Editor > General > Appearance - [v] Show whitespaces -
[v] Leading (중요한, 코드 있는 곳만 표시)
[v] Inner (내부의, 설명하기 모호한데 글자와 글자 사이? 글자 내부??)
[v] Trailing (후행, 쓸데없는 곳에 탭이나 공백 쓰인 곳 표시)
안드로이드 스튜디오에서 탭 표시는 좀 정신 사납다.
'안드로이드' 카테고리의 다른 글
안드로이드 스튜디오(Android Studio) 그 밖에 설정 기록을 남기자. (0) | 2016.02.15 |
---|---|
안드로이드 스튜디오(Android Studio) Grep Console 플러그인 설치와 개인 설정정보 백업, 복구해보자. (0) | 2016.02.15 |
안드로이드 스튜디오(Android Studio)에서 Eclipse Code Formatter Plugin 추가와 Google Style 적용해보자. (4) | 2016.02.15 |
안드로이드 스레드(Thread) AsyncTask를 써보자. (6) | 2015.02.02 |
안드로이드 스레드(Thread)를 써보자. (2) | 2015.02.01 |