[IntelliJ] Untrusted Server's Certificate 해결 방법 Untrusted Server's Certificate가 계속 발생하는 경우 해결 방법 보통 SSL 통신 시도할 경우 방화벽 문제로 인해서 발생한다고 함 해당 알람이 발생할 경우 Settings에서 Server Certificates에서 인증서 관련 옵션을 체크하면됨 위에 언급한 설정 진행 (Settings -> Server Certificates -> Accept non-trusted certificates automatically 체크) IDE 2022.04.06
[IntelliJ] error: unmappable character (0xEB) for encoding x-windows-949 해결 error: unmappable character (0xEB) for encoding x-windows-949 발생시 방법 File -> Settings -> File Encodings -> Global Encoding, Project Encoding UTF-8 변경 Help -> Edit Custom VM Options -> -Dfile.encoding=UTF-8 추가 위에 두 방법이 안되면, Gradle을 빌드로 Default 설정되었을 때 발생함 ㅡㅡ Settings -> Build, Execution, Deployment -> Build Tools Gradle -> Build and run using을 IntelliJ로 변경 IDE 2021.08.01
[IntelliJ] finished with non-zero exit value 1 에러 해결 해결방법 File > Setteings 이동 Build, Execution, Deployment > Build Tools > Gradle 이동 Build and run using을 IntelliJ IDEA 로 변경 Run tests using을 IntelliJ IDEA로 변경 IDE 2021.06.19
[IntelliJ] Lombok 설정 설정시 매일 까먹어서 적어놓음 Lombok 설정 1. Settings -> Plugin -> lombok 검색 실행 (재시작) 2. Settings -> Build, Execution, Deployment -> Annotation Processors -> Enable annotation processing 체크 (재시작) IDE 2020.12.21
[IntelliJ] 단축키 모음 단축키 리스트 ctrl + Space 자동완성 ctrl + shift + space 스마트 자동완성 ctrl + / 현재라인 주석 ctrl + Y 현재 라인 삭제 ctrl + D 현재 코드 라인 복제 Shift + Ctrl + F 전체파일에서 검색 Ctrl + Alt + O Import 최적화 Shift + Ctrl + 방향키 현재의 라인 또는 선택된 블록을 이동 Ctrl + mouse 코드 링크 이동 Ctrl + . 메소드 폴딩 언폴딩 Ctrl + P 메소드 호출시 해당메소드 매개변수를 확인 Alt + Insert 코드 생성 Ctrl + O 메소드 오버라이드 구현 Ctrl + i 인터페이스 메서드 구현 Ctrl + Alt + T 코드 감싸기 (if else , try catch ,etc) Ctrl + .. IDE 2020.12.14