How to deploy multiple spring boot application jar in open liberty server?
Asked
Active
Viewed 211 times
1 Answers
1
You cannot have multiple SpringBoot uber jar applications running in the same Liberty server. You will need to either use multiple Liberty servers or you will need to change to use the war option for SpringBoot. You can deploy multiple SpringBoot war applications to a single Liberty server.

Jared Anderson
- 249
- 1
- 5
-
thank you Jared for the answer – Nasrollah abd khair Nov 24 '21 at 15:03