/* * Copyright 2012-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.boot.actuate.autoconfigure; import java.util.Properties; import org.jolokia.http.AgentServlet; import org.springframework.boot.actuate.autoconfigure.JolokiaAutoConfiguration.JolokiaCondition; import org.springframework.boot.actuate.endpoint.mvc.JolokiaMvcEndpoint; import org.springframework.boot.autoconfigure.AutoConfigureAfter; import org.springframework.boot.autoconfigure.AutoConfigureBefore; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.autoconfigure.condition.ConditionMessage; import org.springframework.boot.autoconfigure.condition.ConditionOutcome; import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication; import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type; import org.springframework.boot.autoconfigure.condition.SpringBootCondition; import org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ConditionContext; import org.springframework.context.annotation.Conditional; import org.springframework.context.annotation.Configuration; import org.springframework.core.type.AnnotatedTypeMetadata; import org.springframework.web.servlet.mvc.ServletWrappingController; /** * {@link EnableAutoConfiguration Auto-configuration} for embedding Jolokia, a JMX-HTTP * bridge giving an alternative to JSR-160 connectors. * * <p> * This configuration will get automatically enabled as soon as the Jolokia * {@link AgentServlet} is on the classpath. To disable it set * {@code endpoints.jolokia.enabled: false} or {@code endpoints.enabled: false}. * * <p> * Additional configuration parameters for Jolokia can be provided by specifying * {@code jolokia.config.*} properties. See the * <a href="http://jolokia.org">http://jolokia.org</a> web site for more information on * supported configuration parameters. * * @author Christian Dupuis * @author Dave Syer * @author Andy Wilkinson * @author Madhura Bhave */ @Configuration @ConditionalOnWebApplication(type = Type.SERVLET) @ConditionalOnClass({ AgentServlet.class, ServletWrappingController.class }) @Conditional(JolokiaCondition.class) @AutoConfigureBefore(ManagementWebSecurityAutoConfiguration.class) @AutoConfigureAfter(ServletWebServerFactoryAutoConfiguration.class) @EnableConfigurationProperties(JolokiaProperties.class) public class JolokiaAutoConfiguration { private final JolokiaProperties properties; public JolokiaAutoConfiguration(JolokiaProperties properties) { this.properties = properties; } @Bean @ConditionalOnMissingBean public JolokiaMvcEndpoint jolokiaEndpoint() { JolokiaMvcEndpoint endpoint = new JolokiaMvcEndpoint(); endpoint.setInitParameters(getInitParameters()); return endpoint; } private Properties getInitParameters() { Properties initParameters = new Properties(); initParameters.putAll(this.properties.getConfig()); return initParameters; } /** * Condition to check that the Jolokia endpoint is enabled. */ static class JolokiaCondition extends SpringBootCondition { @Override public ConditionOutcome getMatchOutcome(ConditionContext context, AnnotatedTypeMetadata metadata) { boolean endpointsEnabled = isEnabled(context, "endpoints.", true); ConditionMessage.Builder message = ConditionMessage.forCondition("Jolokia"); if (isEnabled(context, "endpoints.jolokia.", endpointsEnabled)) { return ConditionOutcome.match(message.because("enabled")); } return ConditionOutcome.noMatch(message.because("not enabled")); } private boolean isEnabled(ConditionContext context, String prefix, boolean defaultValue) { return context.getEnvironment().getProperty(prefix + "enabled", Boolean.class, defaultValue); } } }