I have a springboot application which i want to deploy in tomcat . i followed the instructions here I have application.properties file in src/main/resources with following entries
server.context-path=/mycontext
server.port=9000
I can see that those properties are loaded from actuator urls.
applicationConfig: [classpath:application.properties]": {
"server.port": "9000",
"server.context-path": "/mycontext"}
it works fine when i run it as an executable jar but when i deploy to tomcat it still listens to 8080 port and context value is not updated instead it falls back to application folder name. Please let me know if i have missed something . Thanks in advance.