我需要做什么才能在代码中使用 com.jprofiler.agent.Controller?

发布于 2024-12-26 11:42:40 字数 545 浏览 2 评论 0原文

请大家告诉我到底需要做什么才能使用 com.jprofiler.agent.Controller 在我的代码中?

我有 GWT/GAE 应用程序,正在 IntelliJ IDEA 11 的调试器下运行。我有 JProfiler 7.0.1。

我用谷歌搜索了一下,似乎我需要传递这个 "-agentpath:C:\Program Files (x86)\jprofiler7\bin\windows\jprofilerti.dll,config=C:\Program Files (x86)\jprofiler7 \api\samples\common\config.xml" “-Xbootclasspath/a:S:\Program Files (x86)\jprofiler7\bin\agent.jar” 到 JVM 但它似乎不起作用。

Could guys please tell me what exactly I need to do in order to use com.jprofiler.agent.Controller in my code ?

I have GWT/GAE application which I'm running under debugger of IntelliJ IDEA 11. I have JProfiler 7.0.1.

I googled a little and it seems I need to pass this "-agentpath:C:\Program Files (x86)\jprofiler7\bin\windows\jprofilerti.dll,config=C:\Program Files (x86)\jprofiler7\api\samples\common\config.xml"
"-Xbootclasspath/a:S:\Program Files (x86)\jprofiler7\bin\agent.jar"
to JVM but it doesn't seem to work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光是把杀猪刀 2025-01-02 11:42:40

一般情况下

-agentpath:[path to jprofilerti.dll]

就够了。该进程将等待 JProfiler GUI 连接。这样它就可以以最小的开销使用正确的分析设置。

要立即启动,请通过

-agentpath:[path to jprofilerti.dll],nowait

分析代理然后必须根据您的过滤器设置重新转换类。

使用插件管理器中的 JProfiler 插件将使所有这些变得不必要。

Generally,

-agentpath:[path to jprofilerti.dll]

is enough. The process will wait for the JProfiler GUI to connect. This is so it can use the correct profiling settings with a minimum overhead.

To get immediate startup, pass

-agentpath:[path to jprofilerti.dll],nowait

The profiling agent will then have to retransform classes, depending on your filter settings.

And using the JProfiler plugin from the plugin manager will make all of this unnecessary.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文