Purushothama Yanamala
Purushothama Yanamala

Reputation: 83

SpringBoot jars as a custom module in JBoss EAP 7.0

I want to create a JBoss EAP custom module for SpringBoot jars and use this custom module across different war deployments in JBoss. This execrise is to reduce the size of war files (by removing spring boot jars from war file) as we move all common jars to a custom module.

We want this to do as we have multiple springboot application wars to deploy in JBoss EAP7.0.

Is this possible to do in JBoss and SpringBoot? Please shed some light here.

Upvotes: 0

Views: 644

Answers (1)

Panagiotis Chavariotis
Panagiotis Chavariotis

Reputation: 976

First of all you have to know that Spring Boot is NOT supported in JBoss EAP. It is not recommended to use Spring Boot in Jboss EAP, although it can be packaged in a war deployment. Running Spring Boot inside a container, may create several conflicts! For example, a JAX-RS service could be published twice!

Upvotes: 0

Related Questions