Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
as someone who doesn't know spring but is just reading your code and your error message, looks like where you have "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:06
1  
referencing stackoverflow.com/questions/421891/… maybe you should be using c:out instead, but if you're hardcoding it anyway it doesn't sound like you really need to. – Colleen Jan 18 at 1:07
1  
@colleen: it seems that this is actually idiomatic code. See this tutorial page as an example. – Rhymoid Jan 18 at 1:09

1 Answer

up vote 4 down vote accepted

Please add tag library declaration<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> to the header. The taglib directive declares that your JSP page uses a set of custom tags(c:url here), and identifies the location of the library. Without that indication, your JSP file will end up with a (href) attribute containing an unescaped < character, which is not a valid XML.

UPDATE:

Just realize you are using JSP document instead of JSP page, and you've already declared namespace xmlns:c, so taglib isn't needed any more. Since JSP document strictly requires well-formed XML document, it complains about your link's href attribute(with unescaped < inside). To avoid that, try:

<c:url var="url" value="/css/displaytag.css" />
<link href="${url}" rel="stylesheet" type="text/css" />
share|improve this answer
Is that: xmlns:c="java.sun.com/jsp/jstl/core"; not the same as <%@ taglib uri="java.sun.com/jsp/jstl/core"; prefix="c" %> ? – orionix Jan 18 at 12:03
no, xmlns:c is namespace declaration, which is different from taglib declaration. – Hui Zheng Jan 18 at 12:06
Could both these options be used concurrently within one JSP ? – orionix Jan 18 at 12:18
Yes, and when I put <%@ taglib uri="java.sun.com/jsp/jstl/core"; prefix="c" %> into my JSP right before <html> tag, having all xmlns declarations before taglib of course, I get an error: HTTP Status 500 - /WEB-INF/jsp/test_task.jsp(7,4) The content of elements must consist of well-formed character data or markup. – orionix Jan 18 at 12:39
@orionix I updated my answer. – Hui Zheng Jan 18 at 13:13
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.