20

I'm running a Java application from Eclipse that need a lot of memory.

Where can i put the -Xmms-xms flag ?

Guillaume Massé
  • 8,004
  • 8
  • 44
  • 57

2 Answers2

26

You can set the VM arguments for a specific run configuration:

Run → Run Configurations... → Arguments Tab → VM arguments

Btw, you may want to try -Xms instead of -Xmms.

aioobe
  • 413,195
  • 112
  • 811
  • 826
1

from the run menu select run configuration. you can add specific parameters to each of your run configurations individually.

Bivas
  • 1,484
  • 1
  • 11
  • 17