Where to find the whole MaxPermSize system in Eclipse-WildFly?

Where can all the places in my MaxPermSize system be installed? I am using Eclipse 4.4, WildFly and jdk 1.8.

I get this warning every time I stop WildFly:

Java HotSpot(TM) Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0 

I want to do this by replacing all MaxPermSize with MaxMetaspaceSize. Thanks for the help.

+1
eclipse java-ee wildfly
source share
1 answer
  • Go to Run → Run Configurations in the main menu of the file. Find the specific instance that you are trying to run. The layout of this configuration depends on the type of project you are using, but for most under one of the tabs you can find a section for the arguments of the virtual machine. For the GWT web application, the section is on a tab named "(x)" Arguments "

  • If you use Maven to build, check out the pom.xml file. I found two places where JVM arguments were added, once between the jvmArgs tag and again between the "extraJvmArgs" tag. If you use Control + F on "jvm", you can specify the place where it is indicated for you.

+1
source share

All Articles