I am currently extending an existing JHipster application, and my development environment is Windows.
Before adding my custom code (mainly additional REST services and internal file zipping, nothing particularly complex or involving native code), the application ran reliably. However, after introducing these changes, the JVM crashes within seconds of accessing the new code. However it is not precisely repeatable.
The error message is Process command 'C:\Program Files\OpenLogic\jdk-21.0.6.7-hotspot\bin\java.exe'' finished with non-zero exit value -1073741819
I also tested OpenJDK 22, but the issue persists. Interestingly, the application runs without problems on our Linux-based staging environment.
I would like to debug this issue locally on Windows, but I have found that most available documentation focuses on analyzing crashes in Linux environments, with limited guidance for Windows.
Questions:
- How can I analyze this problem further?
- How can I generate and examine a crash dump on Windows to diagnose the root cause?
Any insights or suggestions would be greatly appreciated.
Thanks!