I have a Spring Boot application deployed to Liberty in Bluemix, and I'm seeing the embedded Tomcat server is being started when the app is started. I don't see this behaviour locally, as I've followed the following documentation steps to disable Tomcat when it's not required.
However when the app is pushed to Bluemix I see a log entry stating that Apache has been started, and the following response header being set for all requests to the app:
Server:Apache-Coyote/1.1
How can I stop this behaviour?
java -jar your.warwhich starts the embedded things). - M. Deinum<application>tag inserver.xml. On Bluemix I'm pushing the .war usingcf push appname -p app.war. Are you saying that using this method the war file isn't deployed to the liberty server properly using this method? - Ric