最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Java使用agent实现main方法之前的实例详解
时间:2022-06-29 01:16:59 编辑:袖梨 来源:一聚教程网
Java使用agent实现main方法之前的实例详解
创建Agent项目
PreMainExecutor 类,在main方法之前执行此方法
public class PreMainExecutor { public static void premain(String agentOps, Instrumentation inst){ System.out.println("premain execute.........."); } }
META-INF/MANIFEST.MF
Manifest-Version: 1.0 Premain-Class:test.agent.PreMainExecutor
打包成JavaAgent.jar,并放到D盘。
测试类
Test类。
public class Test { public static void main(String[] args){ System.out.println("main.........."); } }
执行
java -javaagent:JavaAgent.jar Test
输出
premain execute.......... main..........
相关文章
- 《燕云十六声》红尘无眼完成图文攻略 12-25
- 《燕云十六声》阴阳如影完成图文攻略 12-25
- 《燕云十六声》悬檐之下四架椽屋图文攻略 12-25
- 《燕云十六声》2024最新公测时间介绍 12-25
- 《燕云十六声》有没有藏宝阁 12-25
- 《燕云十六声》制作公司介绍 12-25