com.hyf.hotrefresh.adapter.spring.config.MappedInterceptorEscapeHelper Maven / Gradle / Ivy
package com.hyf.hotrefresh.adapter.spring.config;
import com.hyf.hotrefresh.adapter.spring.agent.MappedInterceptorEscape;
import com.hyf.hotrefresh.common.Log;
import com.hyf.hotrefresh.common.util.FastReflectionUtils;
import com.hyf.hotrefresh.core.util.InfraUtils;
import javax.annotation.PostConstruct;
public class MappedInterceptorEscapeHelper {
@PostConstruct
public void post() {
try {
Class> MappedInterceptorEscapeClass = InfraUtils.forName(MappedInterceptorEscape.class.getName());
FastReflectionUtils.fastInvokeMethod(MappedInterceptorEscapeClass, "escapeMappedInterceptor");
} catch (Throwable t) {
Log.error("Failed to escapeMappedInterceptor", t);
}
}
}