local ressources

Using local ressources in JSP pages

For an internally (no internet access) used webservice based on JSP pages all CSS and JS files had to be included locally. Solution: to achieve this JSTL can be used (<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>) which allows to refernce and load the locally included files, like for example: <link href="<c:url value="/resources/static/css/bootstrap.min.css"/>" rel="stylesheet">
Subscribe to local ressources