Creating an application shared archive file

To create the shared archive with the application files, you can execute the following command in Command Prompt:

    java -Xshare:dump 
         -XX:+UseAppCDS 
         -XX:SharedClassListFile=myappCDS.lst
         -XX:SharedArchiveFile=appCDS.jsa 
         -cp appcds.jar  

As mentioned in the Enabling application class data archive section, if you are using Java 11 or a later version on your system, you can skip using the -XX:+UseAppCDS option (AppCDS was introduced in Java 10; with Java 11, you don't need to enable it explicitly). The preceding command uses the list of class names stored in myappCDS.lst to create the application shared archive file. It also specifies the name of the shared archive file as appCDS.jsa.

Here's a screenshot of the output from the preceding command:

Let's move to the final step—using the shared application archive file.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.223.239.226