views:

86

answers:

2

GAE java plugin does not suspend at any exception. So I'm seeing only stack-trace. The exception is just simple type-casting exception from bug on my code. (Not a custom breakpoint) I installed all tools with default setting and nothing configured additionally. Is this normal?

And addition, DataNeucleus enhancing and app startup to debugging is so slow too. Is this normal too?

Env:

  • Mac OS X 10.6.2
  • Java SE 1.6.0_17 (bundle with OS)
  • Eclipse + GAE plugin for Java. (without AJAX component, downloaded yesterday)
A: 

When it comes to eclipse breapkpoints which are not respected, one possible cause is the bug Breakpoints fail to hit under JDK 1.6.0_14

So if you are using jdk6u14 or u15, you need to upgrade your JVM.
That would not explain the slow behavior of the debugging session, but at least would solve one of the issues you mention.

VonC
Thank you for fast reply.I'm currently checking what you said ...
Eonil
My JVM was 1.6.0_17. Maybe a different problem. Thanks.
Eonil
@Eonil It was worth mentioning anyway. I hope someone else has a more helpful answer on your specific issue.
VonC
A: 

Did you add Java Exception Breakpoint(Run->Add Java Exception BreakPoint)?

Adi
I tried this, but this caught all kind of useless exceptions(outisde of my application scope) or cannot catch any exception.
Eonil