1

I want to use jdb (command line) to debug my source. My source will use some external jar libraries (ex: ojdbc).

How to config jdb refer to external jar library?

Termininja
  • 6,620
  • 12
  • 48
  • 49
Dieu Luong
  • 133
  • 3
  • 12

1 Answers1

1

You can use -classpath option to pass all the classes that should be visible while debugging. You can also pass -sourcepath in case you have sources. This way you can easily access all the classes that are used by your code.

Oo.oO
  • 12,464
  • 3
  • 23
  • 45