-
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
'Tool > IntelliJ' 카테고리의 다른 글
IntelliJ에서 settings 초기화 (0) 2024.05.03 Code Style, Check Style 적용 (1) 2024.05.02 IntelliJ CE JDK, 모듈 설정 및 서비스 추가 (0) 2024.04.09 IntelliJ/mariaDB Illegal mix of collations (utf8mb4_general_ci,COERCIBLE) and (utf8mb4_unicode_ci,COERCIBLE) for operation 'like' (0) 2023.02.08 IntelliJ/MyBatis 경고 설정 (코드 검사 및 포멧팅) (0) 2022.11.02