Breakpoint at “throw new SilentExitException()” in Eclipse + Spring Boot

前端 未结 5 816
Happy的楠姐
Happy的楠姐 2021-01-30 19:35

Every time I run my Spring Boot project on debug mode in Eclipse IDE (Spring Tool Suite), the thread stops at throw new SilentExitException(); line even without a b

5条回答
  •  执笔经年
    2021-01-30 20:13

    Try to run devtools at scope runtime:

    
        org.springframework.boot
        spring-boot-devtools
        runtime
    
    

提交回复
热议问题