All was well until you tried to start jetty using the Intellij Run or Debug functionality and it errors out every time due to a permgen memory error.
Google showed quickly that the problem was a memory configuration of the JVM, but how to change that configuration was not quickly apparent to me.
So this is how you do it.
- Find the JVM memory values you want to change from the stackoverflow.com link above. I used -XX:MaxPermSize=256M which worked in my case, YMMV.
- Enter that configuration into the Run/Debug Configurations page in the VM parameters field.

1 comments:
Thanks for the tip. :) It worked great.
Post a Comment