Eclipse Run config (Run configuration) Create and use Eclipse Run configuration
You can create multiple run configurations in the Run Configuration dialog box. Each configuration can be enabled in the app.
The Run Configuration dialog box can be invoked by selecting run Configurations from the Run menu.
If you want to create a run configuration for your Java app, you need to select Java application in the list on the left and click the New button.
The items described in the dialog box are:
- Run Configuration Name
- Project name
- Main class name
The Arguments (parameter) entries are:
- Program arguments (procedure parameters) can be 0 or more
- VM Arguments (Virtual machine arguments: VM parameters) can be 0 or more
The Commons tab provides universal configuration, such as options for standard input and output, to the console or to the specified file.
Click the Apply button to save the Run configuration and click the Run button to re-execute the Java app.
Eclipse Run config (Run configuration)