Một lần nữa nhìn vào nguồn, giải pháp dường như là để xác định một hệ thống sở hữu java.util.logging.manager
mà là một lớp con của LogManager mà override phương thức reset();
nên Loggers tiếp tục làm việc trên tắt máy.
import java.util.logging.LogManager;
import java.util.logging.Logger;
public class Main {
static {
// must be called before any Logger method is used.
System.setProperty("java.util.logging.manager", MyLogManager.class.getName());
}
public static class MyLogManager extends LogManager {
static MyLogManager instance;
public MyLogManager() { instance = this; }
@Override public void reset() { /* don't reset yet. */ }
private void reset0() { super.reset(); }
public static void resetFinally() { instance.reset0(); }
}
public static void main(String... args) {
Logger logger1 = Logger.getLogger("Main1");
logger1.info("Before shutdown");
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
@Override
public void run() {
try {
Logger logger2 = Logger.getLogger("Main2");
logger2.info("Shutting down 2");
} finally {
MyLogManager.resetFinally();
}
}
}));
}
}
in
Dec 11, 2012 5:56:55 PM Main main
INFO: Before shutdown
Dec 11, 2012 5:56:55 PM Main$1 run
INFO: Shutting down 2
Từ mã này cho LogManager, bạn có thể thấy thấy có một cái móc shutdown mà dismantles các trình xử lý và đóng chúng. Logger chỉ hoạt động khi tắt máy nếu nó chưa được sử dụng trước đó nên mã này không chạy.
// This private class is used as a shutdown hook.
// It does a "reset" to close all open handlers.
private class Cleaner extends Thread {
private Cleaner() {
/* Set context class loader to null in order to avoid
* keeping a strong reference to an application classloader.
*/
this.setContextClassLoader(null);
}
public void run() {
// This is to ensure the LogManager.<clinit> is completed
// before synchronized block. Otherwise deadlocks are possible.
LogManager mgr = manager;
// If the global handlers haven't been initialized yet, we
// don't want to initialize them just so we can close them!
synchronized (LogManager.this) {
// Note that death is imminent.
deathImminent = true;
initializedGlobalHandlers = true;
}
// Do a reset to close all active handlers.
reset();
}
}
/**
* Protected constructor. This is protected so that container applications
* (such as J2EE containers) can subclass the object. It is non-public as
* it is intended that there only be one LogManager object, whose value is
* retrieved by calling Logmanager.getLogManager.
*/
protected LogManager() {
// Add a shutdown hook to close the global handlers.
try {
Runtime.getRuntime().addShutdownHook(new Cleaner());
} catch (IllegalStateException e) {
// If the VM is already shutting down,
// We do not need to register shutdownHook.
}
}
Từ thử nghiệm của riêng tôi
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
@Override
public void run() {
try {
Logger logger2 = Logger.getLogger("Main2");
logger2.info("Shutting down 2");
} catch (Throwable t) {
t.printStackTrace();
}
}
}));
in
Dec 11, 2012 5:40:15 PM Main$1 run
INFO: Shutting down 2
nhưng nếu bạn thêm
Logger logger1 = Logger.getLogger("Main1");
bên ngoài khối này bạn nhận được gì.
Nguồn
2012-12-11 17:41:57
Tôi không chắc liệu điều này có đúng hay không nhưng bạn không có quyền kiểm soát thứ tự mà các móc tắt máy xảy ra. –
Đúng, chúng chạy [đồng thời] (http://docs.oracle.com/javase/1.5.0/docs/guide/lang/hook-design.html) –