修改springboot默认的8080端口详解编程语言

### org.springframework.boot:spring-boot-autoconfigure中spring-configuration-metadata.json文件中的默认配置,如端口号

    { 
      "sourceType": "org.springframework.boot.autoconfigure.web.ServerProperties", 
      "defaultValue": 8080, 
      "name": "server.port", 
      "description": "Server HTTP port.", 
      "type": "java.lang.Integer" 
    } 

如果需要修改默认端口号,可以创建yml、yaml、properties文件来覆盖默认配置;如创建application.properties文件,输入server.port=8081

#服务器端口号 
server.port=8081 
#当前web应用的名称 
server.servlet.context-path=/demo 

为什么application.properties配置了就可以修改覆盖默认的值呢?因为配置了spring-boot-starter-parent

在这里插入图片描述

点击上图中artifactId,进入spring-boot-starter-parent.pom,可以看到springboot会去resources下加载符合要求的文件中查找配置来覆盖默认配置(顺序是从上到下,如果有多个配置文件,文件中有相同属性,那么后加载的配置会覆盖前加载的配置);

在这里插入图片描述

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/18743.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论