Remove JVM
article thumbnail

Classloaders in JVM: An Overview

DZone

Classloaders are an essential part of the Java Virtual Machine (JVM), but many developers consider them to be mysterious. This article aims to demystify the subject by providing a basic understanding of how class loading works in the JVM. This is where we need classloaders. Class loaders are used to load.class files into the memory.

Java 257
article thumbnail

Does the JVM Eliminate Allocations of Temporary Objects?

DZone

Should you be concerned about temporary Java objects or can the JVM eliminate them for you, maybe by replacing them with implicit static instances? Consider the following example:

Java 173
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

Does the 32-Bit JVM or 64-Bit JVM Decision Matter Anymore?

DZone

There are a few distinct differences and subtle nuances between 32-bit JVM and 64-bit JVM. Do I need to understand the difference between 32-bit JVM and 64-bit JVM? The subtle difference between 32-bit JVM and 64-bit JVM wouldn’t make much difference to your application.

article thumbnail

OutOfMemoryError-Related JVM Arguments

DZone

The JVM has provided helpful arguments to deal with OutOfMemoryError. In this article, we would like to highlight those JVM arguments. Those JVM arguments are: -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath. Let’s discuss these JVM arguments in detail in this article. XX:OnOutOfMemoryError. -XX:+ExitOnOutOfMemoryError.

Java 100
article thumbnail

How Does JVM Handle Polymorphism Internally

DZone

How does JVM handle Polymorphism. In this article, we will see How Does JVM Handle Method Overloading And Overriding Internally, how JVM identifies which method should get called. In this article, we will see How Does JVM Handle Method Overloading And Overriding Internally, how JVM identifies which method should get called.

Java 100
article thumbnail

Is Your JVM Leaking File Descriptors — Like Mine?

DZone

Is your JVM leaking? The two issues described here were discovered and fixed more than a year ago. This article only serves as historical proof and a beginners' guide on tackling file descriptor leaks in Java.

Java 100
article thumbnail

JVM Profiler: An Open Source Tool for Tracing Distributed JVM Applications at Scale

Uber Engineering

To help us better leverage this data, we manage massive deployments of Spark … The post JVM Profiler: An Open Source Tool for Tracing Distributed JVM Applications at Scale appeared first on Uber Engineering Blog. For Uber, data is at the heart of strategic decision-making and product development.