i have a folder with images on webContent/images. I Just wanna to know how to provide this folder on the web.
In my project i have just one servlet with annotations:
@WebServlet(urlPatterns = { "/" })
public class IndexCtrl extends HttpServlet {
Every time i try to get a image this servlet get priority and send a index page. How can I provide images folder on the web? What I'm doing wrong?