EmbeddedContainerCustomizer.java 704 Bytes
Newer Older
PWF-WK01\pengwufeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/**
 * 
 */
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());
	}

}