IntelliJ Auto Import

  • Ctrl + Alt + s로 settings 띄우기
    • Add unambiguous imports on the fly
    • Optimize imports on the fly (for current project)
      • 코드가 변경됨에 따라 자동으로 패키지 import문을 삽입/삭제해주는 옵션
    • Insert imports on paste
      • All (모두 자동)
      • Ask (확인 후 선택)
      • None (자동 import 하지 않기)

'tools > IntelliJ' 카테고리의 다른 글

[IntelliJ] 단축키(Short Cut)  (0) 2020.06.01
[IntelliJ] Build Automatically  (0) 2020.05.31

Intellij Tools

  • General ShortCut
ShortCut 설명
ctrl + alt + s 설정창(settings) 열기
ctrl + alt + shift + s Project Structure 창 열기
ctrl + e 최근 사용한 파일 목록 조회
ctrl + shift + a 액션을 검색하여 실행 (설정 변경 및 단축키 확인)
double shift 파일, 클래스, 설정 등 키워드 관련 검색
  • Search
ShortCut 설명
ctrl + shift + n 파일 검색
ctrl + alt + shift + n 메서드 검색
ctrl + e 최근 파일 목록 보기
ctrl + shift + e 최근 수정한 파일 목록 보기
  • Editor ShortCut
ShortCut 설명
ctrl + f4 탭 닫기
ctrl + space 코드 완성
alt + insert 코드 생성 (constructor, getter, setter, override method)
ctrl + o override 메서드 확인
ctrl + i implements method 확인
ctrl + q document 확인
ctrl + d copy line
ctrl + y delete line
alt + shift + ↑ ↓ 라인 단위로 옮기기
ctrl + shift + ↑ ↓ 구문 안에서 라인 옮기기
  • Code View
ShortCut 설명
ctrl + p 인자 값 보기 (Parameter Info)
ctrl + shift + i 코드 구현부 보기 (Quick Definition)
ctrl + ←→ 단어별 이동
ctrl + shift + ←→ 단어별 선택
  • Focus
ShortCut 설명
ctrl + w 포커스 범위 한 단계씩 늘리기
ctrl + shift + w 포커스 범위 한 단계씩 줄이기
ctrl + alt + ←→ 포커스 앞 / 뒤로 이동
double ctrl + ↑ ↓ 멀티 포커스
F2 오류 라인 포커스

'tools > IntelliJ' 카테고리의 다른 글

[IntelliJ] Auto import  (0) 2020.06.08
[IntelliJ] Build Automatically  (0) 2020.05.31

Build Automatically 사용하기

이클립스 설정

  • Tomcat 서버 켠 상태에서 자바 코드 수정 시 자동으로 Build 해주는 역할

인텔리제이 설정

  • Compiler > Build project automatically 체크
  • Registry > complier.automake.allow.when.app.running 체크
  1. Compiler > "Build project automatically" 체크
    • not running / debugging 시에만 작동

  1. *Actions 열기 > Registry *

-  **compiler.automake.allow.when.app.running 체크**

'tools > IntelliJ' 카테고리의 다른 글

[IntelliJ] Auto import  (0) 2020.06.08
[IntelliJ] 단축키(Short Cut)  (0) 2020.06.01

+ Recent posts