Pawan
Pawan

Reputation: 32321

Eclipse : Eclipse Java Remote Debugging

I have a question with respect to Eclipse IDE , Java Remote Debugging .

If i got all the Source Code of the Application and configure the Host , Port , located remotely , under Eclipse Remote Dubugging Configuration , will the Break Points gets Started automatcally ??

For example if i got all the Citi Bank Source code in my Eclipse IDE and i mention the Host and Port (Production Environment) in my Remote Debugging Configiraton Will the break points will be enabled if a specific condition is met ??

Upvotes: 1

Views: 5174

Answers (1)

OldProgrammer
OldProgrammer

Reputation: 12169

You need to normally add debug options when starting the JVM on the server to listen on a specific port, and similarly, use that same port in Eclipse. See this prior question - Remote Debugging

Upvotes: 3

Related Questions