mirror of https://github.com/alibaba/arthas.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.1 KiB
1.1 KiB
mc
mc-retransform
online tutorial
Usage
::: tip
Memory compiler, compiles .java
files into .class
files in memory.
:::
mc /tmp/Test.java
The classloader can be specified with the -c
option:
mc -c 327a647b /tmp/Test.java
You can also specify the ClassLoader with the --classLoaderClass
option:
$ mc --classLoaderClass org.springframework.boot.loader.LaunchedURLClassLoader /tmp/UserController.java -d /tmp
Memory compiler output:
/tmp/com/example/demo/arthas/user/UserController.class
Affect(row-cnt:1) cost in 346 ms
The output directory can be specified with the -d
option:
mc -d /tmp/output /tmp/ClassA.java /tmp/ClassB.java
After compiling the .class
file, you can use the retransform command to re-define the loaded classes in JVM.
::: warning
Note that the mc command may fail. If the compilation fails, the .class
file can be compiled locally and uploaded to the server. Refer to the retransform command description for details.
:::