본문 바로가기

IntelliJ4

Eclipse 유용한 단축키 모음 기능 단축키 대응되는 IntelliJ 단축키 Switch between Eclipse Perspectives + cycle through the different views + + Copy Line + + + 단어 선택 + 로 단어의 끝으로 간 뒤 + + 로 단어 선택 + 2024. 1. 17.
[IntelliJ] Debugging 중 자꾸 springframework 메서드 안으로 들어가는 것 막기 IntelliJ 로 SpringBoot 를 디버깅 하면 특히 Controller 에 디버깅 포인트를 걸면, 자꾸 스프링 프레임워크의 Class 안으로 들어가서 짜증나는 경우가 있다. ( + ApplicationFilterChain...) 이를 막기 위해서는 Settings > Build, Execution, Deployment > Debugger > Stepping 에서 Add Pattern... 을 선택한 뒤 org.springframework.* 하고 org.apache.* 을 추가해주면 된다. 2023. 11. 6.
[SpringBoot3] QueryDsl 설정 build.gradle 수정 implementation "com.querydsl:querydsl-jpa:5.0.0:jakarta" annotationProcessor "com.querydsl:querydsl-apt:${dependencyManagement.importedProperties['querydsl.version']}:jakarta" annotationProcessor "jakarta.annotation:jakarta.annotation-api" annotationProcessor "jakarta.persistence:jakarta.persistence-api" } def querydslSrcDir ='src/main/generated' clean { delete file(querydslSrcDi.. 2023. 7. 30.
[IntelliJ] 실행 시 Project 선택하기 동시에 여러개의 Project 를 개발하다보면, 가장 마지막에 닫았던 프로젝트를 자동으로 열어주는 설정이 불편할 때가 있다. 그럴때는 Settings > Appearance & Behavior > System Settings 에서 Reopen projects on startup 을 체크 해제하면 Intellij 를 실행할 때 프로젝트를 선택할 수 있다. 체크 해제 후 다시 실행해주면 프로젝트가 보이는 것을 확인 할 수 있다. 2023. 7. 30.