Spring Boot端口从默认更改为自定义或新端口

更改Spring Boot应用程序端口的快速指南。 application.properties文件和yml文件中的server.port属性的示例。 以及从命令行参数@ SpringBootApplication,WebServerFactoryCustomizer

1.简介

在本教程中,您将学习如何在Spring Boot应用程序中更改端口。

默认情况下,Spring Boot会执行许多自动配置,并提供了根据需要进行自定义的方法。

最常见的用例是将应用程序端口更改为新端口。 因为默认情况下, 嵌入式tomcat配置有8080端口。 如果您已经在同一端口上运行了另一个服务,则无法在该端口上启动新服务。 因此,您必须在其他端口上运行该应用程序。

可以通过许多可能的方式更改端口。

让我们看一看实用示例程序。

2.通过使用属性和YML文件更改端口

我刚刚创建了一个新的Spring Boot应用程序,并在端口8080上的默认tomcat服务器上启动。

application.properties

这是来自日志的消息,内容为“ Tomcat在端口8080上启动”。

 2020-05-06 20:16:17.003 INFO 19737 --- [      main] jsSSpringBootCofigurationsApplication : Starting SpringBootCofigurationsApplication on -MacBook-Pro-2.local with PID 19737  2020-05-06 20:16:17.006 INFO 19737 --- [      main] jsSSpringBootCofigurationsApplication : No active profile set, falling back to default profiles: default  2020-05-06 20:16:17.921 INFO 19737 --- [      main] osbwembedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)  2020-05-06 20:16:17.932 INFO 19737 --- [      main] o.apache.catalina.core.StandardService  : Starting service [Tomcat]  2020-05-06 20:16:17.933 INFO 19737 --- [      main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.33]  2020-05-06 20:16:18.044 INFO 19737 --- [      main] oaccC[Tomcat].[localhost].[/]    : Initializing Spring embedded WebApplicationContext  2020-05-06 20:16:18.044 INFO 19737 --- [      main] osweb.context.ContextLoader      : Root WebApplicationContext: initialization completed in 999 ms  2020-05-06 20:16:18.222 INFO 19737 --- [      main] ossconcurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'  2020-05-06 20:16:18.387 INFO 19737 --- [      main] osbwembedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''  2020-05-06 20:16:18.391 INFO 19737 --- [      main] jsSSpringBootCofigurationsApplication : Started SpringBootCofigurationsApplication in 1.689 seconds (JVM running for 2.651) 

现在要更改端口,只需在application.properties文件中添加一个属性,如下所示。


[server.port = 9000]

上面的属性server.port会将tomcat端口更改为9000。属性文件将位于resources文件夹下。

添加后,您需要重新启动应用程序以使配置更改生效。

从应用程序控制台仅显示最后几行。 现在默认端口8080更改为9000

2020-05-06 20:20:05.358信息初始化ExecutorService'applicationTaskExecutor'

2020-05-06 20:20:05.500信息Tomcat在具有上下文路径“”的端口:9000 (http)上启动 2020-05-06 20:20:05.504信息在1.369秒内启动了SpringBootCofigurationsApplication(JVM运行2.007)

application.yml

除了application.properties文件之外,还有一个其他文件,该文件将由spring boot自动在src / main / resources文件夹下进行扫描。

 application: name: spring-boot-configurations  server: port: 9006 

但是,如果两个文件中都存在端口属性,则application.properties文件端口将被认为具有最高优先级。

3. Spring Boot中的特定于环境的端口

与application.properties类似,对于每个环境(例如dev,sit,QA和prod),您可以具有不同的属性文件。

application-dev.properties

server.port = 9008

application-qa.properties

server.port = 8008

这些文件对于在多个环境中部署应用程序而对每次更改或部署都没有任何更改最有用。

4.以编程方式更改端口

如果您无权访问属性文件,则可以使用@SpringBootApplication批注类或自定义嵌入式tomcat服务器设置来实现

4.1 @SpringBootApplication类级别

使用相同的属性“ server.port”设置自定义端口。 下面的程序设置为9009。

 package com.javaprogramto.springboot.SpringBootCofigurations;  import org.springframework.boot.SpringApplication;  import org.springframework.boot.autoconfigure.SpringBootApplication;  import java.util.HashMap;  import java.util.Map;  @SpringBootApplication  public class SpringBootCofigurationsApplication { public static void main(String[] args) { // SpringApplication.run(SpringBootCofigurationsApplication.class, args); SpringApplication app = new SpringApplication(SpringBootCofigurationsApplication. class ); Map<String, Object> customConfig = new HashMap<>(); customConfig.put( "server.port" , "9009" ); app.setDefaultProperties(customConfig); app.run(args); }  } 

4.2使用WebServerFactoryCustomizer界面

使用Interface WebServerFactoryCustomizer <ConfigurableWebServerFactory>实现任何类,并实现customset()方法以使用setPort()方法设置端口。

 package com.javaprogramto.springboot.SpringBootCofigurations;  import org.springframework.boot.web.server.ConfigurableWebServerFactory;  import org.springframework.boot.web.server.WebServerFactoryCustomizer;  import org.springframework.stereotype.Component;  @Componentpublic class CustomEmbededPortChange implements WebServerFactoryCustomizer<ConfigurableWebServerFactory> { @Override  public void customize(ConfigurableWebServerFactory factory) { factory.setPort(8086); }  } 

如果收到此错误,请确保没有两次调用SpringApplication.run()。

 ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name defined in class path resource [org/springframework/boot/autoconfigure/admin/SpringApplicationAdminJmxAutoConfiguration. defined in ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springApplicationAdminRegistrar' ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name path resource [org/springframework/boot/autoconfigure/admin/SpringApplicationAdminJmxAutoConfiguration. class ]: Invocation of init method failed; nested exception is javax.management.InstanceAlreadyExistsException: org.springframework.boot:type=Admin,name=SpringApplication ]: Invocation of init method failed; nested exception is javax.management.InstanceAlreadyExistsException: org.springframework.boot:type=Admin,name=SpringApplication  2020-05-06 21:26:09.907 INFO 21555 --- [      main] ossconcurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'  2020-05-06 21:26:09.908 INFO 21555 --- [      main] o.apache.catalina.core.StandardService  : Stopping service [Tomcat]  2020-05-06 21:26:09.915 INFO 21555 --- [      main] ConditionEvaluationReportLoggingListener :  Error starting ApplicationContext. To display the conditions report re-run your application with Error starting ApplicationContext. To display the conditions report re-run your application with enabled. 'debug' Error starting ApplicationContext. To display the conditions report re-run your application with enabled.  2020-05-06 21:26:09.923 ERROR 21555 --- [      main] osboot.SpringApplication        : Application run failed  org.springframework.beans.factory.BeanCreationException: Error creating bean with name class path resource [org/springframework/boot/autoconfigure/admin/SpringApplicationAdminJmxAutoConfiguration. defined in org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springApplicationAdminRegistrar' org.springframework.beans.factory.BeanCreationException: Error creating bean with name path resource [org/springframework/boot/autoconfigure/admin/SpringApplicationAdminJmxAutoConfiguration. class ]: Invocation of init method failed; nested exception is javax.management.InstanceAlreadyExistsException: org.springframework.boot:type=Admin,name=SpringApplication ]: Invocation of init method failed; nested exception is javax.management.InstanceAlreadyExistsException: org.springframework.boot:type=Admin,name=SpringApplication at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:595) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:517) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:323) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:321) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE] at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:882) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE] at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:878) ~[spring-context-5.2.5.RELEASE.jar:5.2.5.RELEASE] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:550) ~[spring-context-5.2.5.RELEASE.jar:5.2.5.RELEASE] at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141) ~[spring-boot-2.2.6.RELEASE.jar:2.2.6.RELEASE] at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:747) ~[spring-boot-2.2.6.RELEASE.jar:2.2.6.RELEASE] at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) ~[spring-boot-2.2.6.RELEASE.jar:2.2.6.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) ~[spring-boot-2.2.6.RELEASE.jar:2.2.6.RELEASE] at com.javaprogramto.springboot.SpringBootCofigurations.SpringBootCofigurationsApplication.main(SpringBootCofigurationsApplication.java:24) ~[classes/:na]  Caused by: javax.management.InstanceAlreadyExistsException: org.springframework.boot:type=Admin,name=SpringApplication at java.management/com.sun.jmx.mbeanserver.Repository.addMBean(Repository.java:436) ~[na:na] at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerWithRepository(DefaultMBeanServerInterceptor.java:1855) ~[na:na] at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerDynamicMBean(DefaultMBeanServerInterceptor.java:955) ~[na:na] at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerObject(DefaultMBeanServerInterceptor.java:890) ~[na:na] at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerMBean(DefaultMBeanServerInterceptor.java:320) ~[na:na] at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.registerMBean(JmxMBeanServer.java:522) ~[na:na] at org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar.afterPropertiesSet(SpringApplicationAdminMXBeanRegistrar.java:129) ~[spring-boot-2.2.6.RELEASE.jar:2.2.6.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1855) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1792) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE] ... 14 common frames omitted 

5.使用命令行参数

如果您不是开发人员,则只进行部署。 如果要独立启动应用程序,则可以通过指定–server,port标志如下运行java -jar命令。

java -jar Spring-Boot-Cofigurations-0.0.1-SNAPSHOT.jar --server.port=9099

或者您可以将其用作eclipse或Intelleji或任何IDE的VM参数。

java -jar -Dserver.port=9099 Spring-Boot-Cofigurations-0.0.1-SNAPSHOT.jar

6.评估顺序(优先级)

如果您在不知不觉中以多种方式进行配置,则应非常小心,因为它可能在不同的端口上运行,并且也很难发现。

这是从高优先级到低优先级的列表。

  • 嵌入式服务器配置– WebServerFactoryCustomizer接口
  • 命令行参数
  • 属性文件
  • @SpringBootApplication主要配置

7,结论

在本文中,您已经了解了从Spring Boot应用程序中的默认端口将端口更改为自定义端口的方法。

在仓库中,所有配置均已注释。 请为您取消注释所需的一个。

本文显示的所有代码都在GitHub上。

您可以直接下载该项目,并且可以在本地运行而没有任何错误。

  • 在GitHub上查看
  • 下载

如果您有任何疑问,请在评论部分中发布。

翻译自: https://www.javacodegeeks.com/2020/05/spring-boot-port-change-to-custom-or-new-port-from-default.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/339667.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

java 开发人员工具_Java开发人员应该知道的5种错误跟踪工具

java 开发人员工具随着Java生态系统的发展&#xff0c;可满足不断增长的请求和用户对高性能需求的Web应用程序成为了新型的现代开发工具。 具有快速新部署的快速节奏环境需要跟踪错误&#xff0c;并以传统方法无法维持的水平获得对应用程序行为的洞察力。 在本文中&#xff0c;…

oracle定时关闭job,Oracle 定时JOB

讲一下Oracle创建临时job小窍门&#xff0c;创建Oracle临时JOB是为了临时执行调用过程或者函数&#xff0c;只调用一次。1、创建Oracle临时jobdeclareVJOB number;beginsys.dbms_job.submit(VJOB,‘PKG_RULECALL.MAKE_ALL_SAMPLE_BY_MONTH_WTH(‘‘201701‘‘,NULL);‘,Sysdat…

Apache Camel 3.2 – Camel的无反射配置

在Apache Camel项目中&#xff0c;我们正在努力开发下一个即将发布的下一个Apache Camel 3.2.0版本。 我们在Camel 3中努力研究的问题之一就是使其变得更小&#xff0c;更快。 其中一个方面是配置管理。 您可以按照12要素原则以多种方式完全配置Camel&#xff0c;以使配置与应…

oracle dbwr trace文件,ORA-01157: cannot identify/lock data file 19 - see DBWR trace file问题处理...

ORA-01157: cannot identify/lock data file 19 - see DBWR trace file问题处理告警信息&#xff1a;ORA-01157: cannot identify/lock data file 19 - see DBWR trace fileORA-01110: data file 19: /app/Oracle/oradata/users02.dbfORA-27037: unable to obtain file statusS…

java jsoup解析_3使用Jsoup解析Java中HTML文件的示例

java jsoup解析HTML是Web的核心&#xff0c;无论您是通过JavaScript&#xff0c;JSP&#xff0c;PHP&#xff0c;ASP或任何其他Web技术动态生成的&#xff0c;您在Internet上看到的所有页面都是基于HTML的。 您的浏览器实际上是解析HTML并为您呈现它。 但是&#xff0c;如果需要…

linux 命令解码空格,Shell 编程:Bash空格的那点事

先了解下bash中什么时候该用空格&#xff0c;什么时候不该用。1. 等号赋值两边不能有空格2. 命令与选项之间需要空格3. 管道两边空格可有可无我们来看看常见的问题1. 赋值时等号两边或者只有左边多了空格igigentoo ~ $ var1 testbash: var1: command not foundigigentoo ~ $ e…

使用类似Lambda的语法切换为Java中的表达式

从Java 14开始&#xff0c; switch表达式具有额外的Lambda式 &#xff08; case ... -> labels &#xff09;语法&#xff0c;它不仅可以用作语句&#xff0c;还可以用作计算为单个值的表达式。 使用新的类似Lambda的语法&#xff0c;如果标签匹配&#xff0c;则仅执行箭头…

配置linux系统ip,Linux系统IP地址配置

命令临时配置ifconfig [Network card name] 10.50.6.16 netmask 255.255.254.0或者ip addr add 10.50.6.200/23 dev [Network card name]router add default gw 10.50.6.1 #添加默认路由重启后失效ip addr add命令添加的IP地址需要使用 ip a show [Network card name]命令查看例…

【AI提示词艺术】第12期 摄影艺术构图处理和人像生成的技巧

摄影艺术构图 星空宇宙 关键词&#xff1a; 强烈的明暗对比,8k,精细的描述,相片纸,超高分辨率,无建筑的,大自然,星空&#xff0c;云朵&#xff0c;刺眼流星&#xff0c;群星&#xff0c;银河&#xff0c;仰视视角&#xff0c;广角镜头 以下是按照提示词类别整理的相关描述&a…

超音速亚原子Enterprise Java

我创建了一个视频&#xff0c;其中用Quarkus&#xff08;用于现代Java应用程序的运行时&#xff09;解释“超音速亚原子Java”。 无论您是刚开始涉足Enterprise Java领域&#xff0c;还是已经是一位经验丰富的Java EE / J2EE开发人员&#xff0c;本课程都将指导您如何在2020年构…

linux 打包排除多个目录,tar打包整个目录(可排除子目录)几种方法

例1。压缩并打包目录tar -czf small.tar.gz small(目录名) ;例2。tar zcvf backup.tar.gz site/* –excludesite/attach –excludesite/images简单解释一下&#xff1a;ls -l | grep “^-” 用来把当前目录下所有文件列出来&#xff0c;不包括子目录&#xff1b;awk ‘{print …

Kogito,ergo规则:从知识到服务,轻松自如

欢迎阅读有关Kogito倡议的博客系列的另一集&#xff0c;以及我们将Drools带入云的努力。 这些文章的目的是收集用户对我们提供给Kogito的功能的早期反馈。 在本文中&#xff0c;我们介绍了两种实现完整智能服务的新方法 &#xff1a; 独立的规则服务 集成智能工作流程和规则…

linux系统io查看计算,Linux下查看进程IO工具iopp

Linux下的IO检测工具最常用的是iostat&#xff0c;不过iostat只能查看到总的IO情况。如果要细看具体那一个程序点用的IO较高&#xff0c;可以使用iotop 。不过iotop对内核版本和Python版本有要求&#xff0c;虽然目前主流的CentOS和Ubuntu版本上都适用。不过考虑到其无法适用的…

java 并发锁_Java并发教程–锁定:内在锁

java 并发锁在之前的文章中&#xff0c;我们回顾了在不同线程之间共享数据的一些主要风险&#xff08;例如原子性和可见性 &#xff09;以及如何设计类以安全地共享&#xff08; 线程安全的设计 &#xff09;。 但是&#xff0c;在许多情况下&#xff0c;我们将需要共享可变数据…

linux 命令 ppt,Linux基本命令()讲解.ppt

第2章 Linux 基本命令 2.1 系统管理命令 在 Linux/UNIX 操作系统中&#xff0c;所有事物都被当作文件来处理&#xff1a;硬件设备(包括键盘和终端)、目录、命令本身&#xff0c;当然还有文件。 实际上是 Linux/UNIX 的能力和灵活性的基础。Linux操作系统命令分为文件管理、文件…

Java14:使用Java 14的新记录联接数据库表

您是否知道可以使用Java 14的预览记录功能将数据库表连接到Java Stream中&#xff1f; 阅读这篇简短的文章&#xff0c;并了解如何使用Speedment Stream ORM完成它。 我们将从如何设置您的项目开始。 设定 下载Java 14 。 转到Speedment Initializer并下载您的项目骨架&#x…

linux 读取内存颗粒,Linux虚拟内存地址转化成物理内存地址

背景现代手机这种SOC(system on chip)&#xff0c;因为功耗、Modem等功能soc上集成了很多core,他们还可以是独立的系统在运转。比如ADSP简介ADSP(Application Digital Signal Processing)就是高通的Hexagon DSP ,就是独立运转的一个coresystem。这样做不仅可以使用soc上的专用核…

primefaces_PrimeFaces扩展中的全新JSF组件

primefacesPrimeFaces扩展团队很高兴宣布即将推出的3.0.0主要版本的几个新组件。 我们的新提交者Francesco Strazzullo为该项目提供了“ Turbo Boost”&#xff0c;并带来了至少6个已成功集成的 JSF组件&#xff01; 当前的开发状态是OpenShift上的deployet – 请查看展示柜。以…

linux数字设定法设定权限,Linux chmod命令详解和使用实例(改变文件或目录的访问权限)...

Linux系统中的每个文件和目录都有访问许可权限&#xff0c;用它来确定谁可以通过何种方式对文件和目录进行访问和操作。文件或目录的访问权限分为只读&#xff0c;只写和可执行三种。以文件为例&#xff0c;只读权限表示只允许读其内容&#xff0c;而禁止对其做任何的更改操作。…

Java 8 Stream中间操作(方法)示例

Java 8 Streams中间操作的完整指南。 所有内置Stream API中间操作&#xff08;方法&#xff09;的列表以及示例。 1.概述 在本教程中&#xff0c;我们将学习什么是 Java 8 Stream 中的中间操作 。 所有这些操作都在java.util.stream.Stream包中 。 在上一教程中&#xff0c;我…