我想禁用除运行状况终结点之外的所有执行器终结点。所有文档都描述了如何在资源属性中实现此目的:

endpoints.enabled=false
endpoints.health.enabled=true

但我一直首选使用内联Java配置。有人可以解释一下我可以在应用程序中的哪个位置进行配置吗?

最佳答案

查看 org.springframework.boot.actuate.autoconfigure.EndpointAutoConfiguration ,在缺少bean时提供端点。一种选择是在您自己的配置类中提供它们。所有端点都启用了该字段。您可以提供所有这些设置,并在 false 上启用设置,但所需的设置除外。

@Configuration
public class ActuatorConfiguration {

    @Autowired(required = false)
    private Collection<PublicMetrics> publicMetrics;

    @Bean
    public MetricsEndpoint metricsEndpoint() {
        List<PublicMetrics> publicMetrics = new ArrayList<>();
        if (this.publicMetrics != null) {
            publicMetrics.addAll(this.publicMetrics);
        }
        Collections.sort(publicMetrics,AnnotationAwareOrderComparator.INSTANCE);
        MetricsEndpoint metricsEndpoint = new MetricsEndpoint(publicMetrics);
        metricsEndpoint.setEnabled(false);
        return metricsEndpoint;
    }
}

09-28 07:03