您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“JAVA虛擬機怎么關(guān)閉鉤子”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
Java程序經(jīng)常也會遇到進(jìn)程掛掉的情況,一些狀態(tài)沒有正確的保存下來,這時候就需要在JVM關(guān)掉的時候執(zhí)行一些清理現(xiàn)場的代碼。JAVA中的ShutdownHook提供了比較好的方案。
JDK提供了Java.Runtime.addShutdownHook(Thread hook)方法,可以注冊一個JVM關(guān)閉的鉤子,這個鉤子可以在一下幾種場景中被調(diào)用:
程序正常退出
使用System.exit()
終端使用Ctrl+C觸發(fā)的中斷
系統(tǒng)關(guān)閉
OutOfMemory宕機
使用Kill pid命令干掉進(jìn)程(注:在使用kill -9 pid時,是不會被調(diào)用的)
下面是JDK1.7中關(guān)于鉤子的定義:
public void addShutdownHook(Thread hook)
參數(shù):
hook - An initialized but unstarted Thread object
拋出:
IllegalArgumentException - If the specified hook has already been registered, or if it can be determined that the hook is already running or has already been run
IllegalStateException - If the virtual machine is already in the process of shutting down
SecurityException - If a security manager is present and it denies RuntimePermission("shutdownHooks")
從以下版本開始:
1.3
另請參見:
removeShutdownHook(java.lang.Thread), halt(int), exit(int)
首先來測試第一種,程序正常退出的情況:
package com.hook;
import java.util.concurrent.TimeUnit;
public class HookTest
{
public void start()
{
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
@Override
public void run()
{
System.out.println("Execute Hook.....");
}
}));
}
public static void main(String[] args)
{
new HookTest().start();
System.out.println("The Application is doing something");
try
{
TimeUnit.MILLISECONDS.sleep(5000);
}
catch (InterruptedException e)
{
e.printStackTrace();
}
}
}
運行結(jié)果:
The Application is doing something Execute Hook.....
如上可以看到,當(dāng)main線程運行結(jié)束之后就會調(diào)用關(guān)閉鉤子。
下面再來測試第五種情況(順序有點亂,表在意這些細(xì)節(jié)):
package com.hook;
import java.util.concurrent.TimeUnit;
public class HookTest2
{
public void start()
{
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
@Override
public void run()
{
System.out.println("Execute Hook.....");
}
}));
}
public static void main(String[] args)
{
new HookTest().start();
System.out.println("The Application is doing something");
byte[] b = new byte[500*1024*1024];
try
{
TimeUnit.MILLISECONDS.sleep(5000);
}
catch (InterruptedException e)
{
e.printStackTrace();
}
}
}
運行參數(shù)設(shè)置為:-Xmx20M 這樣可以保證會有OutOfMemoryError的發(fā)生。
運行結(jié)果:
The Application is doing something Exception in thread "main" java.lang.OutOfMemoryError: Java heap space at com.hook.HookTest2.main(HookTest2.java:22) Execute Hook.....
可以看到程序遇到內(nèi)存溢出錯誤后調(diào)用關(guān)閉鉤子,與第一種情況中,程序等待5000ms運行結(jié)束之后推出調(diào)用關(guān)閉鉤子不同。
接下來再來測試第三種情況:
package com.hook;
import java.util.concurrent.TimeUnit;
public class HookTest3
{
public void start()
{
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
@Override
public void run()
{
System.out.println("Execute Hook.....");
}
}));
}
public static void main(String[] args)
{
new HookTest3().start();
Thread thread = new Thread(new Runnable(){
@Override
public void run()
{
while(true)
{
System.out.println("thread is running....");
try
{
TimeUnit.MILLISECONDS.sleep(100);
}
catch (InterruptedException e)
{
e.printStackTrace();
}
}
}
});
thread.start();
}
}
在命令行中編譯:javac com/hook/HookTest3.java
在命令行中運行:java com.hook.HookTest3
運行結(jié)果:
可以看到效果如預(yù)期。
“JAVA虛擬機怎么關(guān)閉鉤子”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。