I have one java rest web service that is deployed on Tomcat 8 Server, this Tomcat 8 is installed on Ubuntu Server.
My java rest web service work is that it save images into the below location
/opt/tomcat/webapps/TestWebService/WEB-INF/image/xyz.image
Images are successfully save on above location
But i want to access these images via url like
http://192.168.1.185:8080/TestWebService/WEB-INF/image/xyz.image
So how can i do this?
I am using Tomcat 8 and Java.