I am new to Java and Spring. I encountered the error trying to apply CSS styles. Here is my jsp:
<jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:display="urn:jsptld:http://displaytag.sf.net"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:spring="http://www.springframework.org/tags">
<jsp:directive.page contentType="text/html; charset=UTF-8" />
<jsp:directive.page import="test1.domain.*" />
<html>
<head>
<title>CD Catalog</title>
<link href='<c:url value="/css/displaytag.css" />' rel="stylesheet" type="text/css" />
</head>
and so on...
The css folder is on the same level where WEB-INF is.
In my servlet.xml I have:
<mvc:resources mapping="/**" location="/*" />
The next error I get:
HTTP Status 500 - /WEB-INF/jsp/test_task.jsp(11,15) The value of attribute "href" associated with an element type "null" must not contain the '<' character.
I tried also single and double quotes the other way round, and tried the same double quotes, but it wasn't successful.
I would appreciate any advice. Thank you in advance.
"href='<c:url value="/css/displaytag.css" />'", there is something wrong with your syntax and you should probably just have"href=/css/displaytag.css"– Colleen Jan 18 at 1:06c:outinstead, but if you're hardcoding it anyway it doesn't sound like you really need to. – Colleen Jan 18 at 1:07