springboot 設置server.port不生效的原因及解決
springboot 設置server.port不生效
近年來,springboot以其快速構建方便便捷,開箱即用,約定優於配置(Convention Over Configuration)的特性深受廣大開發者喜愛。
springboot已經集成配置好瞭一套web開發的默認配置,開發者可以無需修改任何配置即可開始一個web工程,但是實際情況中有時候開發者還是需要修改部分默認配置項來使其更加契合自己的項目需求。
下面就其中一個小問題做個記錄
在配置服務啟動的端口時,springboot默認在application.properties配置文件中提供瞭server.port配置項來
讓開發者自行配置服務啟動端口號,**但是註意:**
#服務啟動端口號 server.port=8889
該配置項要想生效其實是依賴於項目中內嵌的tomcat容器,如下圖:
內嵌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端口號。
springboot server port無法修改
No active profile set, falling back to default profiles: default
經查詢發現target\classes文件下,沒有生成配置文件。
Build Path -> Configure Build Path… -> java Build Path -> Source
src/main/resources中,
將Excluded:** 改為 None
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- 如何將SpringBoot項目打成 war 包並部署到Tomcat
- SpringBoot-application.yml多環境配置詳解
- SpringBoot配置和切換Tomcat流程詳解
- 使用SpringBoot打jar包並部署到Tomcat詳細步驟
- 五分鐘解鎖springboot admin監控新技巧