检测 Java 应用程序的执行(不仅仅是字节码)

发布于 2024-12-23 04:05:09 字数 369 浏览 0 评论 0原文

我正在做一些 Java 应用程序检测。但使用 ASM 或 BCEL 的可用检测工具仅允许检测字节码。你们知道有一些工具可以检测应用程序的执行吗(比如不仅存在于字节码中,而且 JVM 也能做到这一点)。

例如,如果应用程序有一个类 A,

class A
{
 int a;

 public A()
 {}
}

当我执行 A obj = new A() 时,字节码将不包含任何对 obj.a 的写入,但是JVM 会这么做,AFIK

还有其他一些无法用字节码捕获的东西。那么,你们能告诉我是否存在这样一个框架,可以捕获 JVM 执行的操作。

I am doing some Java application instrumentation. But the available instrumentation tools that use ASM or BCEL only allow to instrument the bytecode. Do you guys know of some tool that can instrument the execution of the application (as in the stuff that is not just there in bytecode but the JVM did it).

For example, if the application has a class A

class A
{
 int a;

 public A()
 {}
}

When I do A obj = new A(), then the byte code will not contain any write to obj.a, but the JVM will do that, AFIK.

There is other stuff as well that can not be captured in bytecode. So, can you guys tell me if there exists such a framework that can capture the operations executed by the JVM.

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

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

发布评论

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

评论(1

牵你手 2024-12-30 04:05:09

如果您想要完全控制仪器,理想情况下您需要完全访问源代码并能够对其进行修改。否则,您将受到字节码保留内容的支配。

我们的 DMS 软件重组工具包是一个程序转换系统,提供对源代码的访问。使用其 Java 前端,DMS 可以解析 (Java) 代码、构建 AST、对 AST 应用任意转换并重新生成已检测的 Java 代码。

您选择使用什么工具取决于您。这篇关于检测代码的论文描述了如何构建经典的测试覆盖率,但其想法是一般的。

If you want complete control over the instrumentation, you ideally need complete access to the source and the ability to modify it. Otherwise you are at the mercy of what the bytecode retains.

Our DMS Software Reengineering Toolkit is a program transformation system that provides such access to the source. Using its Java Front End, DMS can parse (Java) code, build ASTs, apply arbitrary transforms to the ASTs and regenerated instrumented Java code.

What you choose to instrument is up to you. This paper on instrumenting code describes how to build classic test coverage, but the ideas are general.

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