我想实现一个ApplicationChangeMonitor
监视文件系统以了解当前执行的 jar 文件中的更改。当检测到更改时,应用程序应重新启动。我正在使用WatchService来检测更改。
设置:
- 在 (Windows) Eclipse 中使用 samba 共享上的工作区进行开发(Linux 系统)
- jar 文件由 Eclipse maven (m2e) 在该 samba 共享上生成
- jar 文件在 Linux 系统上从 shell 执行(使用 openjdk)
所以每次创建新的 jar 文件时,都应该在 Linux 系统上重新启动正在运行的应用程序。首先,我尝试让应用程序自行重启,但大多数时候我都遇到了来自 JVM 的致命错误。然后我选择了一种更简单的方法:我只是在检测到更改后让应用程序自行结束,并使用 bash 实现重启机制:
while true ; do java -jar application.jar ; done
奇怪的是,在应用程序更改后,我仍然会遇到一两次致命错误。例子:
- java -jar application.jar <-- 初始启动,应用程序正在运行
- 创建了新的 jar 文件
- java -jar application.jar <-- 致命错误
- java -jar application.jar <-- 致命错误
- java -jar application.jar <-- 应用程序启动
- 创建了新的 jar 文件
- java -jar application.jar <-- 致命错误
- java -jar application.jar <-- 应用程序启动
输出:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGBUS (0x7) at pc=0x00007f46d5e2416d, pid=28351, tid=139942266005248
#
# JRE version: 7.0_25-b30
# Java VM: OpenJDK 64-Bit Server VM (23.7-b01 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C [libzip.so+0x516d] Java_java_util_zip_ZipFile_getZipMessage+0x114d
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# An error report file with more information is saved as:
# /home/workspace/.../target/hs_err_pid28351.log
#
# If you would like to submit a bug report, please include
# instructions on how to reproduce the bug and visit:
# http://icedtea.classpath.org/bugzilla
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
OpenJDK 创建转储文件,我猜相关部分是导致此致命错误的堆栈跟踪:
- Stack: [0x00007fbc9398f000,0x00007fbc93a90000], sp=0x00007fbc93a8bd90, free space=1011k
- Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
- C [libzip.so+0x516d] Java_java_util_zip_ZipFile_getZipMessage+0x114d
- C [libzip.so+0x5eb0] ZIP_GetEntry+0xd0
- C [libzip.so+0x3af3] Java_java_util_zip_ZipFile_getEntry+0xb3
- j java.util.zip.ZipFile.getEntry(J[BZ)J+0
- j java.util.zip.ZipFile.getEntry(Ljava/lang/String;)Ljava/util/zip/ZipEntry;+38
- j java.util.jar.JarFile.getEntry(Ljava/lang/String;)Ljava/util/zip/ZipEntry;+2
- j java.util.jar.JarFile.getJarEntry(Ljava/lang/String;)Ljava/util/jar/JarEntry;+2
- j sun.misc.URLClassPath$JarLoader.getResource(Ljava/lang/String;Z)Lsun/misc/Resource;+48
- j sun.misc.URLClassPath.getResource(Ljava/lang/String;Z)Lsun/misc/Resource;+53
- j java.net.URLClassLoader$1.run()Ljava/lang/Class;+26
- j java.net.URLClassLoader$1.run()Ljava/lang/Object;+1
- ...
现在,有人知道我为什么会遇到这些致命错误吗?我想可能是因为 jar 文件还没有完全写好(这可以解释问题出在哪里Java_java_util_zip_ZipFile_getZipMessage
)。但事实并非如此,因为 jar 的 md5sum 在执行后保持不变,导致致命错误和有效执行。
while true; do md5sum application.jar ; java -jar application.jar ; done