服务器之家

服务器之家 > 正文

SpringBoot项目不占用端口启动的方法

时间:2021-05-25 13:27     来源/作者:Jetyang

springboot项目不占用端口启动

现在很多互联网公司或者项目,都使用springboot + springcloud,以微服务的形式来提供后台服务。而且既然是微服务,所涉及到的项目就会很多,服务器端口资源就会相当紧张。而且,其实有些项目,如定时任务等,是不需要对外提供服务,也就不需要占用服务器端口的。那么,在springboot项目中,怎么实现呢?其实很简单,如下:

?
1
2
3
4
5
6
7
8
@enablescheduling
@springbootapplication
public class application {
 
 public static void main(string[] args) {
 new springapplicationbuilder().sources(application.class).web(false).run(args);
 }
}

这样,项目可以正常启动,而且,这个项目是不占用端口的。一般适用于定时任务项目。

starting from spring boot 2.0

-web(false)/setwebenvironment(false) is deprecated and instead web-application-type can be used to specify
spring.main.web-application-type=none

?
1
2
3
4
5
6
7
8
9
@springbootapplication
public class springbootdisablewebenvironmentapplication {
 
  public static void main(string[] args) {
    new springapplicationbuilder(springbootdisablewebenvironmentapplication .class)
      .web(webapplicationtype.none) // .reactive, .servlet
      .run(args);
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://my.oschina.net/u/2617082/blog/1924985

标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国 2021-05-08
返回顶部