欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

修改springboot默认的8080端口

程序员文章站 2022-06-13 15:47:04
...

### 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"
    }

如果需要修改默认端口号,创建application.properties文件,输入server.port=8081

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

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

修改springboot默认的8080端口

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

修改springboot默认的8080端口

相关标签: springboot