All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hyf.hotrefresh.plugin.arthas.ArthasPluginInstaller Maven / Gradle / Ivy

package com.hyf.hotrefresh.plugin.arthas;

import com.hyf.hotrefresh.common.util.ReflectionUtils;
import com.hyf.hotrefresh.core.install.Installer;
import com.hyf.hotrefresh.core.util.Util;

/**
 * @author baB_hyf
 * @date 2022/06/26
 */
public class ArthasPluginInstaller implements Installer {

    @Override
    public void install() {

        if (ArthasUtils.existArthasConfiguration()) {
            return;
        }

        // Map params = new HashMap<>();
        // ArthasAgent.attach(params);
        try {
            Class arthasAgentClass = ReflectionUtils.forName("com.taobao.arthas.agent.attach.ArthasAgent",
                Util.getInfrastructureJarClassLoader());
            ReflectionUtils.getMethod(arthasAgentClass, "attach");
        } catch (Exception ignored) {
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy