0
votes

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.

1
I'm not a SpringBoot expert, but isn't the concept of SpringBoot to be a self-containing runnable JAR?James R. Perkins

1 Answers

0
votes

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!