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

org.springframework.boot.context.web.ServerPortInfoApplicationContextInitializer Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
/*
 * Copyright 2012-2015 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.context.web;

import java.util.HashMap;
import java.util.Map;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.embedded.EmbeddedServletContainer;
import org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent;
import org.springframework.boot.context.embedded.EmbeddedWebApplicationContext;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextInitializer;
import org.springframework.context.ApplicationListener;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.core.env.ConfigurableEnvironment;
import org.springframework.core.env.Environment;
import org.springframework.core.env.MapPropertySource;
import org.springframework.core.env.MutablePropertySources;
import org.springframework.util.StringUtils;

/**
 * {@link ApplicationContextInitializer} that sets {@link Environment} properties for the
 * ports that {@link EmbeddedServletContainer} servers are actually listening on. The
 * property {@literal "local.server.port"} can be injected directly into tests using
 * {@link Value @Value} or obtained via the {@link Environment}.
 * 

* If the {@link EmbeddedWebApplicationContext} has a * {@link EmbeddedWebApplicationContext#setNamespace(String) namespace} set, it will be * used to construct the property name. For example, the "management" actuator context * will have the property name {@literal "local.management.port"}. *

* Properties are automatically propagated up to any parent context. * * @author Dave Syer * @author Phillip Webb * @since 1.3.0 */ public class ServerPortInfoApplicationContextInitializer implements ApplicationContextInitializer { @Override public void initialize(ConfigurableApplicationContext applicationContext) { applicationContext.addApplicationListener( new ApplicationListener() { @Override public void onApplicationEvent( EmbeddedServletContainerInitializedEvent event) { ServerPortInfoApplicationContextInitializer.this .onApplicationEvent(event); } }); } protected void onApplicationEvent(EmbeddedServletContainerInitializedEvent event) { String propertyName = getPropertyName(event.getApplicationContext()); setPortProperty(event.getApplicationContext(), propertyName, event.getEmbeddedServletContainer().getPort()); } protected String getPropertyName(EmbeddedWebApplicationContext context) { String name = context.getNamespace(); if (StringUtils.isEmpty(name)) { name = "server"; } return "local." + name + ".port"; } private void setPortProperty(ApplicationContext context, String propertyName, int port) { if (context instanceof ConfigurableApplicationContext) { ConfigurableEnvironment environment = ((ConfigurableApplicationContext) context) .getEnvironment(); MutablePropertySources sources = environment.getPropertySources(); Map map; if (!sources.contains("server.ports")) { map = new HashMap(); MapPropertySource source = new MapPropertySource("server.ports", map); sources.addFirst(source); } else { @SuppressWarnings("unchecked") Map value = (Map) sources .get("server.ports").getSource(); map = value; } map.put(propertyName, port); } if (context.getParent() != null) { setPortProperty(context.getParent(), propertyName, port); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy