Reputation: 1820
If I run a developed software in the IDE I have two opportunities:
Debug Mode: Software is slower, than in normale mode, because the system needs time to watch all the variables and the program execution.
Normale Mode: Software should run as desired.
Is there a difference in the execution time and the execution itself, if I run the software in the IDE or I start it from the command line?
I use Java software, developed in Eclipse.
Upvotes: 0
Views: 58
Reputation: 111142
In Normal mode there should not be any different between running the application from Eclipse and from the command line.
This is assuming that the same values for the various memory options (heap size, perm gen space) are used.
Upvotes: 1