vote up 0 vote down star

Hi,

My imports :

  xmlns:c="http://java.sun.com/jstl/core"
  xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"

My JSTL Code :

  <h:outputLabel value="YESS" >
  <fmt:formatNumber value="0.25" type="percent"></fmt:formatNumber>


HTML generated code:

  <label>YESS</label>
  <fmt:formatNumber value="0.25" type="percent"></fmt:formatNumber>

The generated code show that the JSTL core is translate in HTML.
But the JSTL "fmt" is not translate in HTML.





More information:

    <fmt:ErrorInThisFunctionName value="0.25" type="percent" />    ===> generate an error
  • I work on Tomcat 6
flag

78% accept rate

3 Answers

vote up 0 vote down

suggestion:

  • check your TLD file.
  • check your header (DTD, attributes) in your web.xml
link|flag
vote up 0 vote down

What Pierre said, and also,

Try xmlns:fmt="http://java.sun.com/jstl/fmt"

Check web.xml for

<web-app version="2.4"
                 xmlns="http://java.sun.com/xml/ns/j2ee"
                 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                 xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
link|flag
vote up 0 vote down

If you are using the normal JSP syntax and not the XML-based syntax try using

<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>
link|flag

Your Answer

Get an OpenID
or

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