/**
 * 
 */
package com.beecode.inz.war;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer;
import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;
import org.springframework.context.annotation.Configuration;

/**
 * @author huangkaibin
 *
 */
@Configuration
public class EmbeddedContainerCustomizer implements EmbeddedServletContainerCustomizer {

	@Autowired
	private HttpProperties properties;

	public EmbeddedContainerCustomizer() {
	}

	@Override
	public void customize(ConfigurableEmbeddedServletContainer container) {
		container.setPort(properties.getPort());
	}

}