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

net.eightlives.friendlyssl.config.MBeanServerConfig Maven / Gradle / Ivy

package net.eightlives.friendlyssl.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import javax.management.MBeanServer;
import java.lang.management.ManagementFactory;

@Configuration
public class MBeanServerConfig {

    @Bean
    public MBeanServer mBeanServer() {
        return ManagementFactory.getPlatformMBeanServer();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy