javaspringservletsspring-bootgrizzly

Embed Grizzly (glassfish) Servlet Container with Spring Boot Java


Spring boot by default uses Tomcat as an Internal Embedded Servlet Container . It has also got support for Jetty and UnderTow.

I have build a Restful Application using spring boot . But now i need to deploy it on Grizzly (Glassfish) Servlet Container .

How do i embed my application to run on grizzly as spring dosen't have support for the same.

https://github.com/spring-projects/spring-boot/issues/5015.

Please help as i researched a lot on thistopic but i coudnt get any link that shows how to embed a new Servlet Container for our spring boot app that spring dosent have support for.

Thanks


Solution

  • As pointed by @Andy there is no support for Spring Boot and Grizzly . Finally i moved to Spring MVC for the same.

    Here is the working repo where i embedd Spring MVC with grizzly. Hope it helps someone.

    Link