본문 바로가기
기록/개발

[IntelliJ] Debugging 중 자꾸 springframework 메서드 안으로 들어가는 것 막기

by POWER_ESFJ 2023. 11. 6.

 

IntelliJ 로 SpringBoot 를 디버깅 하면 특히 Controller 에 디버깅 포인트를 걸면, 자꾸 스프링 프레임워크의 Class 안으로 들어가서 짜증나는 경우가 있다. ( + ApplicationFilterChain...)

 

이를 막기 위해서는 Settings > Build, Execution, Deployment > Debugger > Stepping 에서 Add Pattern... 을 선택한 뒤 org.springframework.* 하고 org.apache.* 을 추가해주면 된다.