So, I'm trying to write a servlet which can handle a url mapping like:
domain/context/servlet/resource_id
Before, when I was specifying the url pattern, I was just doing:
/myServlet
But, for what I'm trying to accomplish, I'm doing...
/myServlet/*
THE PROBLEM I'M RUNNING INTO:
I've been using relative path (so, just the file location with respect to my WebContent folder) for my static files (css/js/etc) now that I'm using the /myServlet/* mapping, the requests for the all static files are now being handled by myServlet. So, basically, the static resources are now resolving to:
domain/context/myServlet/relative_path_I_provide
as opposed to
domain/context/relative_path_I_provide
I'm sure I can fix this myself by just building the absolute path for the resource as opposed to relying on the relative path; but I'm just wondering, why is the resolved path for the static resource changing when I'm using /myServlet/* url pattern as opposed to /myServlet ?
EDIT:
My folder structure is like
WebContent
|
|
|-- debug
|
|-- css
|
|-- file.css
and I'm adding them in a link tag like:
<link href="debug/css/file.css" rel="stylesheet" type="text/css">