I know I can profile my application with JProfiler using ANT target. Is there a way to do the same with maven??
Actually maven allows to run ant targets, using maven-ant plugin, but I'd like to perform such profiling without ANT.

Thanks in advance!

link|improve this question

76% accept rate
feedback

2 Answers

up vote 0 down vote accepted

The JVM arguments normally used to enable profiling of the application can be added to the MAVEN_OPTS environment variable. These arguments will also be used for all applications started by Maven.

As an example my MAVEN_OPTS to enable remote debugging on a Jetty instance started by Maven:

set MAVEN_OPTS = "-Xmx512m -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=4000"
link|improve this answer
Thanks for a quick reply Ruben! But it seems to be a bit different from what I wanted... Configuring maven in that way will force the profiler to run every time the application is run. Am I right?? – Andrew Sep 22 '10 at 16:00
When the application is started through Maven (so not when deployed as a war, or when started from outside of Maven) it will always be possible to profile the application. This does not mean the profiler needs to be started and attached everytime. – Ruben Sep 23 '10 at 6:01
feedback

It is driven by JVM arguments and some environment entry. See http://resources.ej-technologies.com/jprofiler/help/doc/ for more details at "Requirements for remote profiling" chapter. There is the remote application profiling wizard, and it also tells you what to do exactly. You should do the following:

1.4 JVM LINUX: LD_LIBRARY_PATH environment variable should contain profiler/bin

1.4 JVM Windows: PATH environment variable should contain profiler/bin

1.4 Both: Add -Xrunjprofiler -Xbootclasspath/a:{path to agent.jar} JVM arguments

Above 1.5: -agentpath:[path to jprofilerti library] should be added to JVM arguments

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.