Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spring boot 2.0.1 with Jboss eap 6.4

Has anyone make the war generated by Spring boot 2.0.1 (with starter) deployable to Jboss EAP 6.4?

I tried to do some tweaking, but not successful.

Any shed some light here?

Thanks!

like image 458
Tao Lu Avatar asked Jan 03 '23 12:01

Tao Lu


1 Answers

You can only deploy Spring Boot 2.x applications to any Servlet 3.1+ compatible container and JBOSS EAP 6.x only supports Servlet 3.0.

You have to either downgrade spring boot to 1.5.x or upgrade JBOSS to 7+

Below are the references to docs

https://docs.spring.io/spring-boot/docs/2.0.0.RELEASE/reference/htmlsingle/#getting-started-system-requirements-servlet-containers

https://access.redhat.com/articles/113373

like image 176
Venu Duggireddy Avatar answered Jan 05 '23 16:01

Venu Duggireddy