Exiting an application gracefully?

前端 未结 3 436
不知归路
不知归路 2021-01-12 10:06

I have an application with a well defined Try/Catch/Finally chain that exits and executes the finally block just fine under normal conditions, however when someone premature

相关标签:
3条回答
  • 2021-01-12 10:40

    If you have no other design change choices then what you may need is a JVM shutdown hook, which can be added to run a piece of code when System.exit is called.

    Shutdown Hooks are a special construct that allow developers to plug in a piece of code to be executed when the JVM is shutting down. This comes in handy in cases where we need to do special clean up operations in case the VM is shutting down.

    You can add a shutdown hook as mentioned here:

    Runtime.getRuntime().addShutdownHook(Thread)
    

    Read more about shutdown hooks here:

    http://java.dzone.com/articles/know-jvm-series-2-shutdown

    Word of Caution:

    We must keep in mind is that it is not guaranteed that shutdown hooks will always run. If the JVM crashes due to some internal error, then it might crash down without having a chance to execute a single instruction. Also, if the O/S gives a SIGKILL (http://en.wikipedia.org/wiki/SIGKILL) signal (kill -9 in Unix/Linux) or TerminateProcess (Windows), then the application is required to terminate immediately without doing even waiting for any cleanup activities. In addition to the above, it is also possible to terminate the JVM without allowing the shutdown hooks to run by calling Runime.halt() method.

    0 讨论(0)
  • 2021-01-12 11:03

    If you happen to have such threads which can legally be stopped at any time, at any point at all within their loop, at any point within any method which they invoke, and may I warn you that it is very unlikely that you do, then you can stop all of them upon program exit. This will result in an exception being thrown in each thread, and the finally blocks will execute.

    However, the proper way to achieve your goal and have GUI decoupled from the program logic, is to issue a single "exit" signal from the GUI, which will trigger all the application cleanup, which is written in an entirely different class. If you have running threads, then implement the interrupt mechanism in each of them.

    There are many ways to achieve the exit signaling. For example, your business code could register a GUI listener for a special event, which would trigger the cleanup. You could also have a thread which doesn't do anything else but await on a CountDownLatch which would be countDown from the GUI.

    Please, do not at any cost use a shutdown hook. This is the dirtiest mechanism imaginable, and it is there only as a last resort, when all regular cleanup procedures fail. It is never to be used as a part of the regular shutdown routine.

    In summary, there is no royal way to clean application shutdown. You must implement specific mechanisms for each specific concern.

    0 讨论(0)
  • 2021-01-12 11:06

    With modern Java, Window.dispose() on all application windows can offer more graceful possibility to exit an AWT application than System.exit(0), see
    https://docs.oracle.com/javase/8/docs/api/java/awt/Window.html#dispose--

    /** Listens and closes AWT windows.
     * The class is implemented as singleton since only one is needed.
     */
    public class ExitListener extends WindowAdapter {
    
      /** the instance object */
      private static final ExitListener INSTANCE = new ExitListener();
    
      // hide the constructor
      private ExitListener () {}
    
      /** retrieve the listener object */
      public static ExitListener getInstance () {
        return INSTANCE;
      }
    
      @Override
      public void windowClosing ( final WindowEvent e ) {
        e.getWindow().dispose();
      }
    }
    

    and with your windows

    window.addWindowListener( ExitListener.getInstance() );
    

    However, be careful in adverse environments, see:
    https://docs.oracle.com/javase/8/docs/api/java/awt/doc-files/AWTThreadIssues.html#Autoshutdown

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