Call to 'System.exit()' or related methods
Reports calls to System.exit()
, Runtime.exit()
, and Runtime.halt()
.
Invoking System.exit()
or Runtime.exit()
calls the shutdown hooks and terminates the currently running Java virtual machine. Invoking Runtime.halt()
forcibly terminates the JVM without causing shutdown hooks to be started. Each of these methods should be used with extreme caution. Calls to these methods make the calling code unportable to most application servers.
Use the option to ignore calls in main methods.
Inspection options
Option | Type | Default |
---|---|---|
Ignore in main method | Checkbox | false |
Inspection Details | |
---|---|
Available in: | IntelliJ IDEA 2023.3, Qodana for JVM 2023.3 |
Plugin: | Java, 233.SNAPSHOT |
Last modified: 13 July 2023