91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何解決springboot application.properties server.port配置問題

發布時間:2021-08-17 09:16:38 來源:億速云 閱讀:219 作者:小新 欄目:開發技術

這篇文章主要介紹了如何解決springboot application.properties server.port配置問題,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

springboot application.properties server.port配置的問題

近年來,springboot以其快速構建方便便捷,開箱即用,約定優于配置(Convention Over Configuration)的特性深受廣大開發者喜愛。

springboot已經集成配置好了一套web開發的默認配置,開發者可以無需修改任何配置即可開始一個web工程,但是實際情況中有時候開發者還是需要修改部分默認配置項來使其更加契合自己的項目需求。

下面就其中一個小問題做個記錄

在配置服務啟動的端口時,springboot默認在application.properties配置文件中提供了server.port配置項來

讓開發者自行配置服務啟動端口號,**但是注意:**

#服務啟動端口號
server.port=8889

該配置項要想生效其實是依賴于項目中內嵌的tomcat容器,如下圖:

如何解決springboot application.properties server.port配置問題

內嵌tomcat的jar包依賴包含在pom中

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

如果pom中不引人上述依賴,那么項目中不會導入內嵌tomcat的jar包,相應的application.properties配置文件中server.port配置項也將無法生效,因為該配置項實際上修改的就是內嵌tomcat的web端口號。

Spring Boot server.port配置原理

我們經常配置server.port=xxx,但其實這是一個比較復雜的過程才生效的,這次講講生效的過程。

1. autoConfigure

本質來源于自動配置

org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration

如何解決springboot application.properties server.port配置問題

TomcatServletWebServerFactory

為什么是這個類,核心是beanPostProcess原理

@ConfigurationProperties(prefix = "server", ignoreUnknownFields = true)
public class ServerProperties {
 
	/**
	 * Server HTTP port.
	 */
	private Integer port;

beanPostProcess

public class WebServerFactoryCustomizerBeanPostProcessor implements BeanPostProcessor, BeanFactoryAware {
 
	private ListableBeanFactory beanFactory; 
	private List<WebServerFactoryCustomizer<?>> customizers;  
	@Override
	public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
		if (bean instanceof WebServerFactory) {
			postProcessBeforeInitialization((WebServerFactory) bean);
		}
		return bean;
	} 
	
	@SuppressWarnings("unchecked")
	private void postProcessBeforeInitialization(WebServerFactory webServerFactory) {
		LambdaSafe.callbacks(WebServerFactoryCustomizer.class, getCustomizers(), webServerFactory)
				.withLogger(WebServerFactoryCustomizerBeanPostProcessor.class)
				.invoke((customizer) -> customizer.customize(webServerFactory));
	}
 
    private Collection<WebServerFactoryCustomizer<?>> getCustomizers() {
		if (this.customizers == null) {
			// Look up does not include the parent context
			this.customizers = new ArrayList<>(getWebServerFactoryCustomizerBeans());
			this.customizers.sort(AnnotationAwareOrderComparator.INSTANCE);
			this.customizers = Collections.unmodifiableList(this.customizers);
		}
		return this.customizers;
	}
 
	@SuppressWarnings({ "unchecked", "rawtypes" })
	private Collection<WebServerFactoryCustomizer<?>> getWebServerFactoryCustomizerBeans() {
		return (Collection) this.beanFactory.getBeansOfType(WebServerFactoryCustomizer.class, false, false).values();
	}

最終

beanFactory.getBeansOfType(WebServerFactoryCustomizer.class, false, false).values()

WebServerFactoryCustomizer對象.customize(webServerFactory)

@Configuration
@AutoConfigureOrder(Ordered.HIGHEST_PRECEDENCE)
@ConditionalOnClass(ServletRequest.class)
@ConditionalOnWebApplication(type = Type.SERVLET)
@EnableConfigurationProperties(ServerProperties.class)
@Import({ ServletWebServerFactoryAutoConfiguration.BeanPostProcessorsRegistrar.class,
		ServletWebServerFactoryConfiguration.EmbeddedTomcat.class,
		ServletWebServerFactoryConfiguration.EmbeddedJetty.class,
		ServletWebServerFactoryConfiguration.EmbeddedUndertow.class })
public class ServletWebServerFactoryAutoConfiguration {
 
	@Bean
	public ServletWebServerFactoryCustomizer servletWebServerFactoryCustomizer(ServerProperties serverProperties) {
		return new ServletWebServerFactoryCustomizer(serverProperties);
	}

這里就將port設置好了。

如何解決springboot application.properties server.port配置問題

這里使用函數式編程,lambda表達式,將port的值設置進了

ConfigurableServletWebServerFactory ,即TomcatServletWebServerFactory對象

2. embed tomcat如何使用

tomcat創建時,會通過getBean方式獲取工廠

如何解決springboot application.properties server.port配置問題

就是 TomcatServletWebServerFactory

如何解決springboot application.properties server.port配置問題

然后設置connector,從TomcatServletWebServerFactory讀取port,設置connector,設置結束

如何解決springboot application.properties server.port配置問題

感謝你能夠認真閱讀完這篇文章,希望小編分享的“如何解決springboot application.properties server.port配置問題”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

镇坪县| 南投市| 象州县| 五大连池市| 伊金霍洛旗| 休宁县| 陇南市| 宜黄县| 密云县| 通城县| 丘北县| 讷河市| 彭泽县| 连州市| 夏河县| 梅河口市| 施秉县| 孙吴县| 新化县| 岳池县| 阿图什市| 麦盖提县| 马公市| 阿巴嘎旗| 南汇区| 辉县市| 广昌县| 寿阳县| 奎屯市| 祁东县| 南雄市| 无棣县| 北京市| 桑日县| 广水市| 哈密市| 万宁市| 凤翔县| 侯马市| 保山市| 萝北县|