
이클립스 초기 세팅 - 테마, encoding, 톰캣, 오라클
1. 테마 설정 window > preferences > general > appearance > theme > dark 2. encoding 설정 2-1. Window -> Preferences -> General -> Content Types - Java Class File -> Default encoding에 UTF-8 입력 2-2. Window -> Preferences -> General -> Editors ->
howtomakecode.tistory.com
이클립스 초기 세팅 - 자바 jre 설정
1. Installed JREs windows > Preferences > Java > Installed JREs 2. JDK 설치 경로 추가 add > JRE Type > Standard VM 선택 > programFiles > next > JRE home > Directory > JDK 경로 검색 > 선택
howtomakecode.tistory.com
- vm
jdk 경로
- xms
이클립스가 사용하는 최소 힙 메모리 크기
- xmx
이클립스가 사용하는 최대 힙 메모리 크기
참고 블로그
[Eclipse] eclipse.ini 파일 설정
eclipse.ini 주요 설정 값 Eclipse 실행시 eclipse.ini 파일에 설정된 옵션으로 실행됨. 이 설정 파일은 windows 에서는 eclipse.exe 파일이 있는 설치 폴더에, MacOS 에서는 Eclipse.app > Contents > MacOS 폴더 안에 있
jeaha.dev