IDE 8

[IntelliJ][Live Template] Slf4j

✏️ Info. - Version : Intellij Ultimate 2021.2.3 - 인텔리 제이 - 라이브 템플릿 Slf4j Log 자동완성 추가 - log.info , log.debug 등 Slf4j 의 Log 를 자동 생성하기 📋 List. 1. Settings - Live Templates 클릭 2. Java - Live Template 생성 3. Edit variables 로 value 설정 ✔️ Content. 1. Settings - Live Templates 클릭 2. Java - Live Template 생성 - Abberviation - 자동 완성 키워드 - 필자는 soutv 와 비슷하게 logv 로 지정 함 - Desciprtion - 설명 - Template text - log...

IDE/IntelliJ 2021.11.24

[IntelliJ][이슈] The file size exceeds the configured limit. Code insight features are not available.

✏️ Info. - Version : Intellij Ultimate 2021.2.1 - The file size exceeds the configured limit. Code insight features are not available. - 코드 사이즈 제한을 초과하여 발생하는 오류 📋 List. 1. Install location 경로 이동 2. idea.properties 수정 3. idea.max.intellisense.filesize 설정값 변경 (default 2500 -> 25000[Size 맞게 지정] 변경) 4. IntelliJ 재시작 ✔️ Content. 1. Install location 경로 이동 Tool Box 사용 시 Settings > Configuration > Instal..

IDE/IntelliJ 2021.09.13

[IntelliJ][단축키][팁] sout(System.out.print)

✏️ Info. - Version : Intellij Ultimate 2021.1.3 - sout(System.out.print) 콘솔을 찍을 때 편리하게 사용되는 단축키 종류 📋 List. 1. sout - 기본 2. soutm - 메소드 명 3. soutp - 파라미터 명 4. soutv - 값 ✔️ Content. 1. sout - System.out.println(); 이 기본으로 생성 2. soutm - System.out.println(Class.method); - 클래스명.메소드명 출력 3. soutp - System.out.println("parameter = " + parameter); - 입력받은 파라미터들 출력 4. soutv - System.out.println("value = " ..

IDE/IntelliJ 2021.07.08

[IntelliJ] 실행 Jar 생성

✏️ Info. - Intellij Ultimate 2020.3.3 - OpenJDK 1.8 - 인텔리제이 실행(Execute or Runnable) Jar 생성 + 실행 jar에 아래 두 방법을 통해 추가된 lib를 생성된 jar에 포함시키는 방법 1. Maven Dependency를 통한 Library 포함 2. 외부 Directory의 jar 파일 포함 📋 List. 1. resources 디렉터리 생성 2. Artifacts 생성 3. Dependency, 외부 lib 추가 4. Build 5. 실행 6. 실패 시 오류 ✔️ Content. 1. resources 디렉토리 생성 MANIFEST.MF가 작성 될 디렉터리 src/main/resources로 생성을 해야 MANIFEST에 작성한 Mai..

IDE/IntelliJ 2021.04.02

[IntelliJ][VCS] Repository URL 한글 URL 삭제

✏️ Info. - Version : Intellij Ultimate 2020.3.2 - 아래 그림과 같이 Repository 입력 중 한글 경로가 들어가 있는 Repository를 입력하게 됨 - 잘 못 입력된 URL로 -(Discard Location) 버튼으로 삭제를 하였지만 재 접속 시 삭제되지 않고 그대로 남아있다. 📋 List. 1. Intellij 설정이 저장 되는 경로를 찾아 SVN Repository URL 이 저장되는 파일에서 삭제 ✔️ Content. 1. Intellij 설정이 저장 되는 경로를 찾아 SVN Repository URL 이 저장되는 파일에서 삭제 필자 경로 C:\Users\wony\AppData\Roaming\JetBrains\IntelliJIdea2020.3\opti..

IDE/IntelliJ 2021.03.03

[IntelliJ][Cubrid] Database tool 연결방법 2

✏️ Info. - IntelliJ 에서 Database Tool 로 Cubrid 연결을 하고 싶어서 찾아보았다. - 방법 1. Driver 다운로드 후 경로 지정 방법 2. IntelliJ 내에 Jdbc-drivers 설정 방법 - 이번 글에서는 1. IntelliJ 내에 Jdbc-drivers 설정 방법 📋 List. 1. IntelliJ - jdbc-drivers.xml 설정 2. Cubrid Driver 등록 3. Cubrid DataSource 연결 4. DataSource 등록 5. 확인 ✔️ Content. 1. IntelliJ - jdbc-drivers.xml 설정 1). jdbc-drivers 폴더로 이동 2). jdbc-drivers.xml -> artifacts 내부에 다음 내용 추가..

IDE/IntelliJ 2021.01.06

[IntelliJ][Cubrid] Database tool 연결방법 1

✏️ Info. - IntelliJ 에서 Database Tool 로 Cubrid 연결을 하고 싶어서 찾아보았다. - 방법 1. Driver 다운로드 후 경로 지정 방법 2. IntelliJ 내에 Jdbc-drivers 설정 방법 - 이번 글에서는 1. Driver 다운로드 후 경로 지정 방법으로 진행 - 준비 사항 - Cubrid JDBC Driver 📋 List. 1. Cubrid Driver 등록 2. Cubird DataSource 연결 3. 확인 ✔️ Content. 1. Cubrid Driver 등록 1). Action 에서 Database 검색 후 클릭 2). Database 왼쪽 상단 + 버튼 클릭 후 Driver 클릭 3). Driver 등록 3.1 Custom JARs 클릭 3.2 앞서..

IDE/IntelliJ 2021.01.04