Skip to content
Advertisement

Tag: keep-alive

How to disable Keep alive in SpringBoot application in docker image

We have a Web application with following technologies: Java, SpringBoot, Docker, Microservices, Jhipster. The port number for the frontend container is 80. I am trying to disable keep alive option for the frontend microservice because SSO Authentication Server requires this parameter set to be false. I tried to create the front container with maven : mvn -Pqpm,no-liquibase -Dhttp.keepAlive=false clean verify

Advertisement