java - Importing .css into jsp document -
how link css file jsp file. jsp file in /web-inf/pages/connection.jsp css file in /web-inf/pages/style.css .
don't put public+static resources in
web-inf(web-inf protected resources, jsps)put public resources in
webapp/static(pages not names things aren't pages)use jstl core url tag urls:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <link rel="stylesheet" href="<c:url value='/static/styles/style.css'/>">- use lowercase urls (at least domain , path)
Comments
Post a Comment