How do I stop a process running in IntelliJ such that it calls the shutdown hooks?

前端 未结 2 830
再見小時候
再見小時候 2020-11-29 06:05

When I run my program in IntelliJ then use the STOP button, it does not call my shutdown hooks that I\'ve created. Is there a way in IntelliJ to have those called on shutdow

相关标签:
2条回答
  • 2020-11-29 06:51

    If you are on Mac (and I assume Linux), get the pid and use kill from the terminal. It's an extra step, but works to debug the shutdown handler when you need to.

    0 讨论(0)
  • 2020-11-29 06:58

    You need to use the Exit button in the Run panel, not the Stop button. Note that it will only work when Running and will not work when Debugging.

    Here is the screenshot if you can't find it:

    Exit

    This feature uses platform specific code and currently works on Windows and Linux only. Once IDEA-56273 is fixed, this feature should be also available on Mac. It is fixed in 10.5 version of IDEA.

    0 讨论(0)
提交回复
热议问题