IntelliJ 코드를 입력했을 때 자동으로 import
Windows인 경우
1. IntelliJ IDEA 상단 메뉴 [File > Settings] 선택
2. [Settings]에서 [Editor > Auto Import]를 선택
3. 오른쪽 화면 'Optimize imports on the fly' 와 'Add unambiguous imports on the fly' 선택
4. [OK] 버튼 클릭
Mac인 경우
1. IntelliJ IDEA 상단 메뉴 중에서 [IntelliJ IDEA -> Preferences]를 선택
2. Editor > General > Auto Import를 선택
3. Java 항목 중 'Optimize imports on the fly' 와 'Add unambiguous imports on the fly' 선택
4. [OK] 버튼 클릭
이미지참조
Add unambiguous imports on the fly
>> 모호하지 않은 import 문을 즉시 추가
Optimize imports on the fly (for current project)
>> 불필요한 import문을 제거하여 자동으로 최적화
중복되는 이름의 클래스가 있을경우, 어느것을 import 해야하는지 모름. 그럴경우 Alt+Enter로 import할 패키지 선택
'IDE Tool > IntelliJ IDEA 내 설정' 카테고리의 다른 글
[IntelliJ] Google Java Code Style 적용 (0) | 2023.12.21 |
---|---|
[IntelliJ] 인텔리제이 콘솔(Console) 자동 줄바꿈 (0) | 2022.09.19 |
IntelliJ Import * 나오지 않도록 설정 (0) | 2022.09.07 |