时间:2021-05-19
这篇文章主要介绍了spring boot如何指定启动端口,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
spring boot 默认端口为8080
1.修改为指定端口
(1)修改配置文件
src/main/resources/application.properties
server.port=8081(2)通过编码的方式来指定端口
在启动类中添加servletContainer方法
package com.example.demo;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;import org.springframework.context.annotation.Bean;@SpringBootApplicationpublic class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } @Bean public TomcatServletWebServerFactory servletContainer(){ return new TomcatServletWebServerFactory(8081) ; }}说明:
该代码适用于spring boot2X中
2.动态指定端口
生成jar包后,动态指定端口
(1)在命令行中指定启动端口
java -jar test.jar --server.port=8081(2)传入虚拟机系统属性
java -Dserver.port=8081 -jar test.jar说明:
java [options] -jar filename [args]
其中 options
-D[property]=value
定义系统属性值
property变量是一个字符串代表属性名,value代表设定的属性值
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一)spring-boot-starter命名规则自动配置模块命名规则:xxx-spring-boot,如:aspectlog-spring-boot启动器命名
1.pom.xml中加入依赖com.spring4allswagger-spring-boot-starter1.8.0.RELEASE2.在启动类(即带@Sp
1.什么是spring-boot-devtoolsspring-boot-devtools是spring-boot项目开发时的一个热部署工具,安装了spring
1.加入mybatis-spring-boot-stater的Maven依赖org.mybatis.spring.bootmybatis-spring-boot
一、使用mybatis-spring-boot-starter1、添加依赖org.mybatis.spring.bootmybatis-spring-boot-