Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How class loading is done by using -Xbootclasspath/p:path? [closed]

I've seen -Xbootclasspath/p:path being used for loading class dynamically can you please elaborate and explain by providing example.

like image 881
NEO Avatar asked Nov 24 '13 12:11

NEO


1 Answers

go to your command line and type java -X, to see the options available, -Xbootclasspath followed by path to comma seperated lists of jar files specified to prepend these classes before the standard jre classes. A use would be if you want to add patches affecting core runtime libraries.

like image 102
user3020494 Avatar answered Oct 13 '22 00:10

user3020494