Popular Books:
What Is HotSpot JVM
This section describes what is HotSpot - A Java Virtual Machine (JVM) originally developed by Sun Microsystems and now supported by Oracle Corporation. 2022-10-01, ∼1281🔥, 0💬
Install OpenJ9 JVM with OpenJDK on CentOS Systems
This section provides a tutorial example on how to download and install a binary combination of different OpenJDK and OpenJ9 JVM releases for CentOS systems. 2022-10-01, ∼1197🔥, 0💬
loadClass() Method - Loading Classes Explicitly
This section provides a tutorial example on how to load classes into JVM in 3 ways: loadClass() method, Class.forName() method, and 'new' operator. 2022-10-01, ∼1170🔥, 0💬
"-Xlog:gc+ergo=trace" - Minor GC Report
This section provides examples of log messages generated from '--Xlog:gc+ergo=trace' that tells us what happened at each Parallel Minor GC. 2022-10-01, ∼1074🔥, 0💬
Young Generation Collectors - Serial, PS, ParNew, G1
This section describes Garbage Collectors used for the Young generation: Serial, Parallel Scavenge (PS), Parallel New (ParNew), and Garbage First (G1). 2022-10-01, ∼1042🔥, 0💬
Parallel New (ParNew) Collector for Minor GC
This section demonstrates that the '-XX:+UseConcMarkSweepGC' JVM option invokes the Parallel New (ParNew) collector for Young generation GC. 2022-10-01, ∼975🔥, 0💬
What Is Runtime?
This section describes what is Runtime - A Java built-in class, java.lang.Runtime, that presents running instances of a Java Virtual Machine (JVM). 2017-04-28, ∼969🔥, 2💬
"-Xint" - Running in Interpreted-Only Mode
This section provides a tutorial example on how to run benchmark tests in interpreted-only mode using the '-Xint' JVM option. 2022-12-10, ∼947🔥, 1💬
Accessing System Environment Variables
This section provides a tutorial example on how to access environment variables defined in the operating system using the System.getenv() method. 2017-01-14, ∼914🔥, 2💬
💬 2017-01-14 Herong: Martin, The code has been corrected now. Thanks.
"-Xlog:gc" - Default GC Logging Level: INFO
This section describes the garbage collection logging option, '-Xlog:gc', which prints out log messages from the GC channel at the INFO level. 2022-10-01, ∼893🔥, 0💬
Popular Posts:
This section provides a tutorial Java program, CipherDES.java - A Java Implementation of DES encrypt...
This section provides a tutorial example on how to configure and use LDAP server to provide email ad...
This section provides a tutorial example on how to perform substructure match with the m.HasSubstruc...
This section provides a tutorial example on how to use the static methods, showInternal*Dialog(), to...
This section describes how to connect to a SQL Server 2005 through DSN with JDBC-ODBC Bridge.