SpringBoot项目不占用端口启动的方法
程序员文章站
2024-02-24 20:16:40
springboot项目不占用端口启动
现在很多互联网公司或者项目,都使用springboot + springcloud,以微服务的形式来提供后台服务。而且既然是微服务...
springboot项目不占用端口启动
现在很多互联网公司或者项目,都使用springboot + springcloud,以微服务的形式来提供后台服务。而且既然是微服务,所涉及到的项目就会很多,服务器端口资源就会相当紧张。而且,其实有些项目,如定时任务等,是不需要对外提供服务,也就不需要占用服务器端口的。那么,在springboot项目中,怎么实现呢?其实很简单,如下:
@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
@springbootapplication public class springbootdisablewebenvironmentapplication { public static void main(string[] args) { new springapplicationbuilder(springbootdisablewebenvironmentapplication .class) .web(webapplicationtype.none) // .reactive, .servlet .run(args); } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
SpringBoot项目不占用端口启动的方法
-
SpringBoot项目不占用端口启动的方法
-
SpringBoot+jsp项目启动出现404的解决方法
-
Intellij IDEA实现SpringBoot项目多端口启动的两种方法
-
Intellij IDEA实现SpringBoot项目多端口启动的两种方法
-
80端口被system占用导致Apache无法启动的解决方法
-
80端口被占用 Apache启动失败的解决方法
-
80端口被Pid为4的未知程序占用导致Apache不能启动的解决方法
-
使用Maven tomcat:run命令启动web项目时修改默认端口的方法
-
Win10系统80端口被System占用,Apache启动不了的解决方法