Saturday, June 26, 2010

Profiling Java Application with Netbeans on Windows

For profiling with netbeans, I followed the steps as described in the Netbeans IDE 6.8 under "Profile > Profile Project" and "Profile > Attach Profiler". At first, I created a new ant target as:


<target name="run-prof">

<exec dir="${deploy.dir}" executable="cmd" os="Windows 2003" output="runmaster.output.txt">

<env key="HOME" value="C:code">

</env>

<arg line="/c run.bat">

</arg>

</exec></target>


and then to attach the target to the profiler, I replaced the call to "run.bat" with a call to "run_nbproject.bat" as described under the "Attach Profiler" widget. I also set the filters to include "jboss.*".

No comments: