기타/IntelliJ (4) 썸네일형 리스트형 [IntelliJ] Git Bash 연동 1. File - Settings - Tools - Terminal (단축키 Ctrl + Alt + s) : Application Settings 밑에 Shell path에 git bash 경로 적어줌 "C:\Program Files\Git\bin\bash.exe" -login -i 2. IntelliJ 재구동 https://violetboralee.medium.com/intellij-idea%EC%99%80-git-bash-%EC%97%B0%EB%8F%99%ED%95%98%EA%B8%B0-63e8216aa7de IntelliJ IDEA와 Git Bash 연동하기 JetBrains 계열의 IDEA와 Git Bash를 연동하는 방법을 소개합니다. violetboralee.medium.com https://.. [IntelliJ] html 서버 재시작 없이 변경 파일 실행 : spring-boot-devtools 라이브러리 추가하면 html 파일을 컴파일만 해주면 서버 재시작 없이 View 파일 변경 가능 # build.gradle dependencies에 spring-boot-devtools 추가 서버 재시작 없이 Build - Recompile 만으로도 변경된 파일 확인 가능 dependencies { implementation 'org.springframework.boot:spring-boot-devtools' } [IntelliJ] gradle을 통하지 않고 IntelliJ에서 직접 실행 IntelliJ에서 자바를 직접 실행하지 않고 gradle을 통해 실행될 때가 있는데, 이렇게 되면 실행 속도가 느릴 때가 있음 이를 IntelliJ에서 직접 실행하도록 변경하려면 아래와 같이 처리하면 됨 (IntelliJ에서 바로 자바를 띄워서 돌려버림 -> 훨씬 빨리 처리 됨) # Settings - Build, Execution, Deployment - Build Tools - Gradle Build and run using, Run tests using : IntelliJ IDEA로 바꿔줌 [IntelliJ] 서버 포트 변경 - application 실행 시 이미 사용 중인 포트라는 에러 메시지가 뜨면 아래 두 가지 방법 중 하나를 선택해서 원하는 포트번호로 바꿔줌 "Web server failed to start. Port 8080 was already in use." 1. src/main/resources/application.properties 2. Run - Edit Configurations - Environment variables (또는 IntelliJ 단축키 shift 두번 입력 후 Edit Configurations 선택) 이전 1 다음