- Eclipse(STS)를 사용할 때 기본적으로 사용하는 설정을 소개한다.
개발 환경
- Windows 10 64bit
- jdk1.8.0_241
- Spring Tools 4 for Eclipse
Font 크기 변경
- Eclipse 코드 편집기의 font 크기를 11로 변경한다.
- Windows -> Preference -> General -> Appearance -> Colors and Fonts -> Basic -> Text Font -> 크기 11로 변경
Undo history 변경
- Ctrl + Z (복구 단축키)가 저장하는 삭제된 코드 크기를 증가시킨다. 대용량의 코드를 삭제할 때 이를 복구하지 못하는 경우를 방지한다.
- Windows -> Preference -> General -> Editors -> Text Editors -> Undo history size : 20000
자동 새로고침
- 파일을 프로젝트에 업로드 하였지만 eclipse가 자동 새로고침 하지 않아서 파일을 인식하지 못하는 경우를 방지한다.
- Windows -> Preference -> General -> Workspace -> Refresh using native hooks or polling
Web Browser 변경
- Windows -> Preference -> General -> Web browser -> Use external web browser -> Chorme
Encoding 타입 변경
- Windows -> Preference -> General -> Workspace -> Text file encoding -> Other -> UTF-8
- Window -> Preferences -> General -> Content Types - Java Class File -> Default encoding 에 UTF-8 입력
- Window -> Preferences -> General ->Editors -> Text Editors -> Spelling -> Encoding -> UTF-8
- Windows -> Preference -> Web -> 각 CSS Files, HTML Files, JSP Files -> Encoding -> UTF8
- Windows -> Preference -> XML -> XML Files -> Encoding -> UTF8
Console 출력 버퍼 크기 설정
- Console이 저장하는 코드 크기를 증가시킨다. 대용량의 코드가 출력될 때 이를 저장하지 못하는 경우를 방지한다.
- Window -> Preperences -> Run/Debug -> Console -> Limit Console output 의 체크해제 또는 Console buffer size (characters) 늘리기
Console 출력 tab width 변경
- Windows -> Preference -> Run/Debug -> Console -> Displayed tab width : 4
오류, 경고 메시지를 현재 프로젝트 것만 보도록 변경
- Problem 탭 -> 이미지의 빨간색 아이콘 클릭 -> Configurations: Errors/Warings on Project, Scope : On elements in selected projects 체크
패키지 구조를 계층적으로 보기
- Package Exploer -> 이미지의 빨간색 아이콘 클릭 -> Package Presentation -> Hierarchical
Search Page 최적화
- Ctrl + H -> Customize… -> 필요없는 Search Page(Git Search, Plug-in Search) 제거
Spelling 검사 끄기
- Window -> Preferences -> General -> Editors -> Text Editors -> Spelling -> Enable spell checking
출처: https://mainia.tistory.com/3755
Yaml Editor 플러그인 설치
- yml 파일(스프링 부트 설정 파일) 편집에 유용하다.
- Help -> Eclipse Marketplace -> Yaml Editor 검색 후 설치
IndentGuide 플러그인 설치
- Eclipse는 기본적으로 가독성을 위해 들여쓰기(indent)를 위한 가이드라인을 제공하지 않는다. IndentGuide 플러그인은 들여쓰기를 위한 실선 가이드라인을 제공하므로 가독성과 개발에 유용하다.
- Help -> Install New Software -> Work with에 ‘http://www.certiv.net/updates’ 입력 후 설치
출처: https://www.certiv.net/updates/
Thymeleaf 자동 완성 플러그인 설치
- Thymeleaf 자동 완성 플러그인이다.
- Help -> Install New Software -> Work with에 ‘http://www.thymeleaf.org/eclipse-plugin-update-site/’ 입력 후 설치
출처: https://yeahajeong.tistory.com/61
기타 플러그인 설치
출처: https://snyk.io/blog/10-eclipse-plugins-you-shouldnt-code-without/
Comments powered by Disqus.