Re: Performance of my code

2006-10-24 Thread Martin Gainty
October 24, 2006 12:55 PM Subject: Performance of my code > Hi all, this is not a question about struts, but is a question about java, > > Is there a tool that let me check performance issues in my code, like > example the variables that I declared but never used? > > Ca

Re: Performance of my code

2006-10-24 Thread Daniel Chacón Sánchez
If you don´t know the answer then don´t write :P Thanks Jerome, I just downloaded an extension for JDeveloper that check that, thanks!!! 2006/10/24, Ed Griebel <[EMAIL PROTECTED]>: On 10/24/06, Daniel Chacón Sánchez <[EMAIL PROTECTED]> wrote: > Hi all, this is not a question about struts, but

Re: Performance of my code

2006-10-24 Thread Jerome Gagner
Unused variables: Use and IDE like Eclipse or IDEA. They both have rule checking. Maven also has a plugin for this. In terms of performance, I'd look for a Java profiler. I've personally had very good experiences with Yourkit (www.yourkit.com) On 10/24/06, Daniel Chacón Sánchez <[EMAIL PROTECTE

Re: Performance of my code

2006-10-24 Thread Ed Griebel
On 10/24/06, Daniel Chacón Sánchez <[EMAIL PROTECTED]> wrote: Hi all, this is not a question about struts, but is a question about java, Well then it probably shouldn't be asked here :-) Is there a tool that let me check performance issues in my code, like example the variables that I declar

Performance of my code

2006-10-24 Thread Daniel Chacón Sánchez
Hi all, this is not a question about struts, but is a question about java, Is there a tool that let me check performance issues in my code, like example the variables that I declared but never used? Can you tell me where I can download that tool, THANKS