views:

24

answers:

1
+1  Q: 

Netbeans jsp debug

Hello all. How can i see in debug time the value of a el expression? i.e. ${myBean.myProperty} ? Thank you

+1  A: 

Put a breakpoint on the getter of myProperty- i.e. getMyProperty()

Bozho