Eclipse tutoria...login
Eclipse tutorial
author:php.cn  update time:2022-04-13 14:09:28

Eclipse Debug configuration



Create and use the Debug configuration

The Eclipse Debug configuration is similar to the run configuration but is used to start the application in debug mode.

The steps to open the Debug configuration dialog box are: Run > Debug Configurations.

debug_conf1

Select the "Java Application" option from the list on the left to create a debug configuration for your Java application and click the New button.

The description information in the dialog box is:

  • The name of the debugging configuration

  • The project name

  • Main class name

The description information of the arguments (parameters) tab is:

  • Zero or more programs Parameters

  • Zero or more virtual machine parameters (VM arguments)

debug_conf2

Save the running configuration information and click the Apply button, then Click the Debug button to load the application in debug mode.

php.cn