To get the stack traces back, you need to pass the option -XX:-OmitStackTraceInFastThrow to the JVM.
The optimization is that when an exception (typically a NullPointerException) occurs for the first time, the full stack trace is printed and the JVM remembers the stack trace (or maybe just the location of the code). When that exception occurs often enough, the stack trace is not printed anymore, both to achieve better performance and not to flood the log with identical stack traces.
/**
* NOTE: Without this method present and returning LanguageVersion.JAVA_1_5,
* Javadoc will not process generics because it assumes LanguageVersion.JAVA_1_1
* @return language version (hard coded to LanguageVersion.JAVA_1_5)
*/
public static LanguageVersion languageVersion() {
return LanguageVersion.JAVA_1_5;
}
Help -> Install New Software
Choose "Helios - http://download.eclipse.org/releases/helios" site
Expand "Web, XML, and Java EE Development"
Check JST Server Adapters (version 3.2.2)
M. Bechny, F. Sobieczky, J. Zeindl, und L. Ehrlinger. Proceedings of the 33rd International Conference on Scientific and Statistical Database Management, Seite 214–219. New York, NY, USA, Association for Computing Machinery, (11.08.2021)
M. Bechny, F. Sobieczky, J. Zeindl, und L. Ehrlinger. Proceedings of the 33rd International Conference on Scientific and Statistical Database Management, Seite 214–219. New York, NY, USA, Association for Computing Machinery, (11.08.2021)
A. Hackl, J. Zeindl, und L. Ehrlinger. Proceedings of the 35th International Conference on Scientific and Statistical Database Management, Seite 1–2. New York, NY, USA, Association for Computing Machinery, (27.08.2023)