是否可以修改字节码并用javassist保存?

发布于 2024-10-20 08:43:35 字数 101 浏览 2 评论 0 原文

我在网上找到的所有参考文献都说字节码可以在运行时修改,但我似乎没有找到修改后的字节码是否可以替换原始字节码。

这样,原始字节码可以被替换一次,其余时间,使用之后的增强版本。

All the references I've found on the web says the bytecode can be modified at runtime, but I don't seem to find if that modified bytecode could replace the original.

This way the original bytecode could be substituted once, and the rest of the time, use the enhanced afterwards.

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

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

发布评论

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

评论(1

ι不睡觉的鱼゛ 2024-10-27 08:43:35

是的,它被称为构建时字节码检测; javassist 以及 aspectj 等库支持此模型。

我对后者与 Apache Maven 结合使用 aspectj-maven-插件

[编辑] 另请参阅使用 Javassist 实现构建时字节码检测文章。

Yes, it's called build-time byte-code instrumentation; javassist as well as libraries such as aspectj supports this model.

I've had good experience with the latter in combination with Apache Maven using the aspectj-maven-plugin.

[Edit] Also see the Implementing Build-time Bytecode Instrumentation With Javassist article.

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