user1747106
user1747106

Reputation: 21

Debug a program run from External tool in Eclipse

I have a java application that runs from a batch file. I have used an external tool for this.

However, I am not able to debug this application through eclipse.

Upvotes: 1

Views: 3877

Answers (1)

Kane
Kane

Reputation: 8172

You have to launch your java application with remote debug options.

Then you can create a remote debug configuration in your Eclipse to attach that jvm process.

Upvotes: 1

Related Questions