kiuma wrote: > Sorry I mean, as I'm a really newbie to enterprise-programming, I'm > starting with a complex work ;-P > > Infact I'm using XDcolet to generate files, Jboss + jetty(or Tomcat) > as containers, and struts as MVC framework. > Then in my jsp I don't want any sort of java code, only tags. > This is my really first time in this kind of apps, and thanks to u > all, I'm making really big progresses. > This work is particularry hard even because in my office I'm alone. > > Because all these different technologies, even if I'm using netBeans, > it's not possible for me to use all its rad features. > So can you suggest some debugging techniques to me?
My guess is that you've never used a built-in debugger :-) That being the case, let me assure you it is quite simple. All you have to do is: - set a break-point - run the program in debug mode (From the debug menu) - execution will pause where you set the breakpoint - examine anything important (values of variables - hold your mouse over them or look in the frame to your left) - you have many options on how to proceed (step over/in, continue, continue to cursor). Play with them :-) HTH, Eddie -- Eddie Bush -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>