인텔리제이 윈도우 단축키 정리
·
IntelliJ
Alt + Insert : getter and setter, contructor .. 등 메서드 자동 생성 Alt + 1 : project tab 여/닫기 Alt + Shift + F : replace or replace all Ctrl + P : parameter info (커서가 위치한 메서드의 매개변수 조회) Ctrl + Alt + V memberRepository.findByName(member.getName()); // Ctrl + Alt + V Optional byName = memberRepository.findByName(member.getName()); Alt + Shift + M : Extract Method memberRepository.findByName(member.getName(..
스프링부트 인텔리제이 세팅
·
IntelliJ
설치직후 한번만 해도 되는 세팅 - 메뉴 => Help => Edit Custom VM Options -Dfile.encoding=UTF-8 인텔리제이 세팅, 프로젝트 생성시마다 해야하는 세팅 - 메뉴 => Build, Execution, Deployment => Compiler Build project automatically : 체크 이 설정은 스프링부트 프로젝트에서만 하면 된다. 일반 자바프로젝트에서는 필요없음
인텔리제이 자바 프로젝트에 맞는 .gitignore 파일 세팅
·
IntelliJ
https://www.toptal.com/developers/gitignore/api/intellij,java 프로젝트 루트폴더에 .gitignore 파일 추가 후 위 링크로 들어가서 모든 내용을 복사 후 붙여넣기 !