Problem You may face the below error while running a Maven build java.lang.OutOfMemoryError: PermGen space Solution You must increase the Permanent Generation (PermGen) memory size of your JVM by passing the argument -XX:MaxPermSize and...
Tagged: JVM
Profile and Monitor your Java Virtual Machine
Sometimes you need to have an idea about what happens on your JVM. In fact, your need to profile and monitor your Java Virtual Machine to see how your resources are used. Three ways...