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.
89 lines
2.7 KiB
Markdown
89 lines
2.7 KiB
Markdown
5 years ago
|
This case introduces the ability to dynamically update code via the `jad`/`mc`/`redefine` command.
|
||
|
|
||
|
Currently, visiting http://localhost/user/0 will return a 500 error:
|
||
|
|
||
|
`curl http://localhost/user/0`{{execute T3}}
|
||
|
|
||
|
```
|
||
|
{"timestamp":1550223186170,"status":500,"error":"Internal Server Error","exception":"java.lang.IllegalArgumentException","message":"id < 1","path":"/user/0"}
|
||
|
```
|
||
|
|
||
|
This logic will be modified by `redefine` command below.
|
||
|
|
||
|
### Use jad command to decompile UserController
|
||
|
|
||
|
`jad --source-only com.example.demo.arthas.user.UserController > /tmp/UserController.java`{{execute T2}}
|
||
|
|
||
|
The result of jad command will be saved in the `/tmp/UserController.java` file.
|
||
|
|
||
|
|
||
|
Then open `Terminal 3`, use `vim` to edit `/tmp/UserController.java`:
|
||
|
|
||
|
`vim /tmp/UserController.java`{{execute T3}}
|
||
|
|
||
|
For example, when the user id is less than 1, it also returns normally without throwing an exception:
|
||
|
|
||
|
```java
|
||
|
@GetMapping(value={"/user/{id}"})
|
||
|
public User findUserById(@PathVariable Integer id) {
|
||
|
logger.info("id: {}", (Object)id);
|
||
|
if (id != null && id < 1) {
|
||
|
return new User(id, "name" + id);
|
||
|
// throw new IllegalArgumentException("id < 1");
|
||
|
}
|
||
|
return new User(id.intValue(), "name" + id);
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### Use sc command to find the ClassLoader that loads the UserController
|
||
|
|
||
|
`sc -d *UserController | grep classLoaderHash`{{execute T2}}
|
||
|
|
||
|
```bash
|
||
|
$ sc -d *UserController | grep classLoaderHash
|
||
|
classLoaderHash 1be6f5c3
|
||
|
```
|
||
|
|
||
|
It can be found that it is loaded by spring boot `LaunchedURLClassLoader@1be6f5c3`.
|
||
|
|
||
|
Please write down your classLoaderHash here, in the case here, it's `1be6f5c3`. It will be used in the future steps.
|
||
|
|
||
|
Note: Please replace `<classLoaderHash>` with your classLoaderHash above, then execute the commands manually in the following steps:
|
||
|
|
||
|
### mc
|
||
|
|
||
|
After saving `/tmp/UserController.java`, compile with the `mc` (Memory Compiler) command and specify the ClassLoader with the `-c` option:
|
||
|
|
||
|
`mc -c <classLoaderHash> /tmp/UserController.java -d /tmp`
|
||
|
|
||
|
```bash
|
||
|
$ mc -c 1be6f5c3 /tmp/UserController.java -d /tmp
|
||
|
Memory compiler output:
|
||
|
/tmp/com/example/demo/arthas/user/UserController.class
|
||
|
Affect(row-cnt:1) cost in 346 ms
|
||
|
```
|
||
|
|
||
|
### redefine
|
||
|
|
||
|
Then reload the newly compiled `UserController.class` with the `redefine` command:
|
||
|
|
||
|
`redefine /tmp/com/example/demo/arthas/user/UserController.class`{{execute T2}}
|
||
|
|
||
|
```
|
||
|
$ redefine /tmp/com/example/demo/arthas/user/UserController.class
|
||
|
redefine success, size: 1
|
||
|
```
|
||
|
|
||
|
### Check the results of the hotswap code
|
||
|
|
||
|
After the `redefine` command is executed successfully, visit https://[[HOST_SUBDOMAIN]]-80-[[KATACODA_HOST]].environments.katacoda.com/user/0 again.
|
||
|
|
||
|
The result is:
|
||
|
|
||
|
```
|
||
|
{
|
||
|
"id": 0,
|
||
|
"name": "name0"
|
||
|
}
|
||
|
```
|