Other spaces
Loading...
You can improve the startup time of a application server/java application (for example the runtime) by using Class Data Sharing
Adding these parameters will make sure the CDS (class data sharing) archive file (a file with the extension .jsa will be created)
-XX:+AutoCreateSharedArchive
-XX:SharedArchiveFile=/path/to/store/cds/archive/app.jsa
More information can be found on: https://docs.oracle.com/en/java/javase/21/vm/class-data-sharing.html