Spring Boot Actuator - 如何向/ shutdown端点添加自定义逻辑

问题描述 投票:6回答:3

在我的项目中,我开始使用Spring Boot Actuator。我使用/shutdown端点来优雅地停止嵌入式Tomcat(这很好用),但我还需要在关机期间做一些自定义逻辑。有什么办法,该怎么办?

java spring spring-boot spring-boot-actuator
3个回答
4
投票

我可以想到在关闭应用程序之前执行某些逻辑的两种方法:

  1. 注册Filter,毕竟它是一个Web应用程序。
  2. 使用invoke建议拦截@Before方法

Servlet过滤器

由于/shutdown是一个Servlet端点,因此您可以在调用Filter端点之前注册/shutdown

public class ShutdownFilter extends OncePerRequestFilter {
    @Override
    protected void doFilterInternal(HttpServletRequest request,
                                    HttpServletResponse response,
                                    FilterChain filterChain) 
                                    throws ServletException, IOException {
        // Put your logic here
        filterChain.doFilter(request, response);
    }
}

另外不要忘记注册它:

@Bean
@ConditionalOnProperty(value = "endpoints.shutdown.enabled", havingValue = "true")
public FilterRegistrationBean filterRegistrationBean() {
    FilterRegistrationBean registrationBean = new FilterRegistrationBean();
    registrationBean.setFilter(new ShutdownFilter());
    registrationBean.setUrlPatterns(Collections.singleton("/shutdown"));

    return registrationBean;
}

定义@Aspect

如果您向/shutdown端点发送请求,假设启用了关闭端点且安全性未阻止请求,则将调用invoke方法。你可以定义一个@Aspect来拦截这个方法调用并将你的逻辑放在那里:

@Aspect
@Component
public class ShutdownAspect {
    @Before("execution(* org.springframework.boot.actuate.endpoint.ShutdownEndpoint.invoke())")
    public void runBeforeShutdownHook() {
        // Put your logic here
        System.out.println("Going to shutdown...");
    }
}

另外不要忘记启用AspectJAutoProxy

@SpringBootApplication
@EnableAspectJAutoProxy(proxyTargetClass = true)
public class Application { ... }

spring-aspects依赖:

compile 'org.springframework:spring-aspects'

3
投票

调用它时,关闭端点会在应用程序上下文中调用close()。这意味着可以使用在关闭处理期间运行某些自定义逻辑的所有常用机制。

例如,您可以将bean添加到实现DisposableBean的应用程序上下文中,或者在通过Java配置声明bean时使用destroyMethod@Bean属性:

@Bean(destroyMethod="whateverYouWant")
public void Foo {
    return new Foo();
}

0
投票

如果您创建自定义ShutdownEndpoint bean,则可以添加自定义逻辑。

@Component
public class CustomShutdownEndpoint extends ShutdownEndpoint {
    @Override
    public Map<String, Object> invoke() {
        // Add your custom logic here            

        return super.invoke();
    }
}

通过这种方式,您可以更改任何逻辑弹簧 - 启动 - 执行器端点。

© www.soinside.com 2019 - 2024. All rights reserved.