i'm trying to to move all my stuff (jsp pages, CSS, images) in the WEB-INF folder. But now, i can't reach, for example, my CSS with the "usual" code
<link rel="stylesheet" type="text/css" href="CSS/Style.css" >
Under WEB-INF i have this kind of structure
How can i reach from a JSP page (inside the JSP folder) a CSS file (inside the CSS folder)?
DO i have to use getServletContext()
in every html page?