IntelliJ
-
IntelliJ 에서 Java main함수 실행하는 방법Tool/IntelliJ 2024. 6. 11. 17:31
간단한거라도 기록과 동시에 복습 1. 직접실행1.1. main 메소드 앞 실행 버튼으로 바로 실행 1.2. 실행 할 자바파일 선택 후 마우스 오른쪽 -> Run, Debug 2. Run > Edit Configurations...Configuration 추가 VM options을 추가 및 설정하고 main함수에 전달할 Argument를 설정한다. console에서 실행/usr/bin/java \-Dlogback.configurationFile=/opt/.../backend/batch/logback.xml \-Dbatch.properties=/opt/.../backend/batch/batch.properties \-jar /opt/.../batch.jar \Test
-
IntelliJ/mariaDB Illegal mix of collations (utf8mb4_general_ci,COERCIBLE) and (utf8mb4_unicode_ci,COERCIBLE) for operation 'like'Tool/IntelliJ 2023. 2. 8. 12:33
IntelliJ 쿼리 콘솔에서 쿼리 실행 도중에 아래와 같은 에러가 발생하였다. [HY000][1267] (conn=87) Illegal mix of collations (utf8mb4_general_ci,COERCIBLE) and (utf8mb4_unicode_ci,COERCIBLE) for operation 'like' 음.. 잘 된던게 왜 안되지 하면서 원인을 찾게 되었다. MariaDB는 로컬에 존재하고 아래 포스팅과 같이 옵션을 넣고 실행 https://dchkang83.tistory.com/86 MacOS/Rancher/shell script 만들기 mac을 재부팅 할때마다 rancher가 Waiting node 어쩌고 저쩌구 하면서 뻗는다... 아놔... mariaDB는 data를 볼륨마운트..
-
IntelliJ/MyBatis 경고 설정 (코드 검사 및 포멧팅)Tool/IntelliJ 2022. 11. 2. 19:54
아래 설정해 주면 SQL 경고를 없애주고 데이터베이스에 맞는 코드 검증도 해준다. 포멧팅 관련 설정은 아직 못찾았다.. 바쁜 관계로 확인 되면 본문에 추가 예정 Copy & Paste 하면.. 리포멧 끄기! myBatis 포멧팅 설정을 아직 못찾은 상태에서 인덴트를 맞춰둔 코드를 복붙하면... 툴에 설정된것처럼 변경되어 버린다. 아놔.. 일단 끄자! (없음으로 변경) SQL 음영 드리우는거 코딩할때 최대한 신경안쓰이게 흐릿하게 변경. before after
-
IntelliJ/CheckStyle 및 GoogleStyle Formatter 설정Tool/IntelliJ 2022. 10. 20. 08:28
CheckStyle 설정 CheckStyle 설치 후 IDE Restart Check Style을 Google Checks로 변경 GoogleStyle Formatter 설정 아래 사이트는 구글 스타일에 대한 컨벤션 규칙임으로 참고 바람 https://google.github.io/styleguide/javaguide.html Google Java Style Guide 1 Introduction This document serves as the complete definition of Google's coding standards for source code in the Java™ Programming Language. A Java source file is described as being in Goo..
-
IntelliJ/단축키 모음Tool/IntelliJ 2022. 10. 20. 07:42
기본 ⇧ : Shift ⌃ : Controll ⌥ : Option ⌘ : Command Home : fn + ← End : fn + → Page Up : fn + ↑ Page Down : fn + ↓ 단축키 구분 맥 연결 키보드 맥 윈도우 Comment 코드 자동 정렬 Command + Alt + L ⌘ + ⌥ + L Ctrl + Alt + L import 정리 Ctrl + Alt + O ⌃ + ⌥ + O Ctrl + Alt + O import 순서 & 불필요한 import 제거 여러행 선택 Alt + Drag ⌥ + Drag 마우스로 선택 지정 참조 이동
-
IntelliJ + Gradle + Lombok + 테스트코드Tool/IntelliJ 2021. 4. 8. 15:58
안녕하세요, 건담아빠입니다. 이번 포스팅은 Lombok 라이브러리 설정입니다. 1. InterlliJ Lombok Plugins - File > Settings (Ctrl+Alt+S) > Plugins > "lombok" 검색 > Install > 재시작? (이미 설치되어 있어서 재시작 안함) 2. gradle 의존성 추가 - build.gradle implementation('org.projectlombok:lombok') 4. DTO 및 테스트 코드 작성 - dto 생성 package dto; import lombok.Getter; import lombok.RequiredArgsConstructor; @Getter @RequiredArgsConstructor public class HelloDto {..
-
IntelliJ + Github 연동Tool/IntelliJ 2021. 4. 1. 18:27
안녕하세요, 건담아빠입니다. 이번 포스팅은 깃허브 연동입니다. 1. Git설정 - 설치된 git.exe 설정 (C:\Program Files\Git\bin\git.exe) - GitHub 추가 - Add Account 누르면 브라우가 뜹니다. - Github 로그인 - Github 로그인 후 IDE 접속 권한을 부여합니다. - 로그인 후 아래 캡쳐 처럼 로그인 완료합니다. - Github에 프로젝트 공유합니다. - 프로젝트 생성 - add 및 commit을 해도 되나, Cancel하고 추가하는식으로 진행해 보겠습니다. - .gitignore 조정 후 Add # Package Files # *.jar *.war *.ear #Gradle temporary files target/ - Commit Direct..