Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

Eclipse Run Configuration


May 24, 2021 Eclipse


Table of contents


Eclipse Run Configuration


Create and run configurations with Eclipse

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 called by selecting Run Configurations from the Run menu.

Eclipse Run Configuration

If you want to create a running configuration for a 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 the configuration name
  • The name of the project
  • The name of the main class

Arguments items are:

  • Program arguments (program parameters) can be 0 or more
  • VM arguments (Virtual Machine arguments: virtual machine parameters) can be 0 or more
Eclipse Run Configuration

Commons tabs provide common configurations, such as the option for standard input and output, to the console or to specify files.

Eclipse Run Configuration

Click the Apply button to save the running configuration and the Run button to re-execute the Java app.