Delivery Excellence, DevOps: Cloud-native Deployments of Data Science Models w/ Java ReSTful Services
the curl command looks as follows when deploying to the default context on the web app server, which is "/"
Jetty asks for custom deployment context. In this case, I used "/daniel" for it.
http://localhost:8080/daniel/hello/world
time curl http://localhost:8080/daniel/hello/world time curl -X GET http://localhost:8080/daniel/hello/world
JEE application servers may use the WAR's resp. EAR's file name as the deployment context. In this case, it defaults to "/aiModelsAtScaleOnRestfulJeeSvcs".
http://localhost:8080/aiModelsAtScaleOnRestfulJeeSvcs/hello/world
time curl http://localhost:8080/aiModelsAtScaleOnRestfulJeeSvcs/hello/world time curl -X GET http://localhost:8080/aiModelsAtScaleOnRestfulJeeSvcs/hello/world