We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
` public void test() { RedisUtil.lock(() -> { // 业务逻辑A });
RedisUtil.lock(() -> { // 业务逻辑B }); RedisUtil.getCach(() -> { // 业务逻辑A1 }); RedisUtil.getCach(() -> { // 业务逻辑B1 });
} ` 目前你是通过“类名+方法名”确定方法关系的。这样的话,当同一方法内包含不同的逻辑时,接口调用关系图会显得特别乱;而且也不能区分在不同的场景下这个方法的执行情况。
对于复杂的接口关系图,很难保证用户体验性,可否提供一个通过类似树形表格来展现接口调用层级的页面
The text was updated successfully, but these errors were encountered:
No branches or pull requests
`
public void test() {
RedisUtil.lock(() -> {
// 业务逻辑A
});
}
`
目前你是通过“类名+方法名”确定方法关系的。这样的话,当同一方法内包含不同的逻辑时,接口调用关系图会显得特别乱;而且也不能区分在不同的场景下这个方法的执行情况。
对于复杂的接口关系图,很难保证用户体验性,可否提供一个通过类似树形表格来展现接口调用层级的页面
The text was updated successfully, but these errors were encountered: