목차

IntelliJ IDEA

프로젝트 시작

오류시 대응

Gradle 연동

Windows Cygwin

Cygwin Bash Terminal

JetBrains annotation 제거

@NotNull 등 리팩토링시 jetbrains annotation이 붙는 현상을 없애고 싶으면 프로젝트 의존성에서 annotations.jar가 들어갔는지 확인해본다. Gradle 에서는 다음과 같이 제거한다.

configurations.all {
    exclude group: 'org.kohsuke.jetbrains', module: 'annotations'
}

Git + SSH 작동 안 할 때

Java Application 실행시 Classpath 가 올바로 지정 안 되는 현상

Multiple Project

외부 프로그램 실행

Themes

Intellij Ultimate Linux 최신 버전 다운로드 링크 확인

# 버전 번호만 확인
curl -fsSL "https://data.services.jetbrains.com/products?code=IIU%2CIIC&release.type=release" | jq '[.[].releases[].version][0]'
 
# Linux 다운로드 링크
curl -fsSL "https://data.services.jetbrains.com/products?code=IIU%2CIIC&release.type=release" | jq '[.[].releases[].downloads.linux.link][0]'

참조문서