I have just host my springboot application (WAR) over AWS elastic beanstack, but found one strange issue
server.servlet.context-path= /app-name/api/v0
This is working on localhost perfectly fine but after deploying over aws its not working, however all APIs are working without context path from AWS as well:
Example :
http://awsaddress.com/login -> its working, but it should like
http://awsaddress.com/app-name/api/v0/login -> its not working
