springboot项目启动多个实例的方法

Posted 魔豆的BLOG<

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot项目启动多个实例的方法相关的知识,希望对你有一定的参考价值。

我现在需要实现这样的功能:将一个服务提供者启动多个实例,下面我列出在eclipse中启动多个实例的方法:

 

首先看一下我的服务提供者的项目文件结构:

springboot默认的配置文件是application.properties,注意看我为了实现启动多个实例改成两个配置文件,这两个配置文件分别设成不同的端口,这里我列出一个配置文件的内容

application-inst1.properties:

# server_config
server.port=8082
server.servlet.context-path=/news-offer

spring.application.name:news-offer
eureka.client.serviceUrl.defaultZone:http://localhost:8088/news-server/eureka

接下来需要修改启动的NewsOfferApplication.java的方式:

进入Debug Configurations:

在Arguments一栏的Program arguments项填写:--spring.profiles.active=inst1

这个inst1对应的就是application-inst1.properties配置文件名称的inst1,然后再复制一个Configurations,改成inst2,然后分别启动,就OK了~

以上是关于springboot项目启动多个实例的方法的主要内容,如果未能解决你的问题,请参考以下文章

springboot启动流程构造SpringApplication实例对象

SpringBoot启动报错“Consider defining a bean of type ‘xxx.mapper.UserMapper‘ in your configuration.“(代码片段

spring boot 一个项目启动多个实例

Spring Boot 项目启动两种自动执行方法的实现方式

项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde(代码片段

Springboot 项目启动后执行某些自定义代码