-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEclipse_IDE.txt
More file actions
14 lines (10 loc) · 818 Bytes
/
Copy pathEclipse_IDE.txt
File metadata and controls
14 lines (10 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
http://www.vogella.com/tutorials/EclipsePlugin/article.html
/// What are run configurations?
A run configuration defines the environment which will be used to execute a generic launch.
For example, it defines arguments to the Java virtual machine (VM), plug-in (classpath) dependencies, etc.
To pass system properties to your Eclipse application, you can add launch parameters using the -D switch.
As example, if you add the argument -Dmy.product.loglevel=INFO,
you can get the "INFO" value with System.getProperties("my.product.loglevel").
If you are developing Eclipse RCP applications, the launch configuration is created based on the product configuration file.
// Error: cannot launch eclipse ide // Eclipse shows splash screen and closes. How to fix?
=> wrong info in JAVA_TOOL_OPTIONS_, path, loader, ...