Eclipse Cannot find the tag library - Java - Programmation
Marsh Posté le 23-09-2008 à 13:42:23
Bonjour, Pour la mise en page j'utilise un "include.jsp" Mais il me mets un message d'erreur : Cannot find the tag library descriptor for http://java.sun.com/jsp/jstl/fmt Voici mon code : <%@ page language="java" %> <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %> <%@ page session="true" %> => <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> <%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles" %> <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %> Je pense avoir mis les bons fichiers jar, mais ca marche pas. Pour etre sur, qu'est ce qu'il faut mettre comme librairie, et ou le mettre? Merci
Marsh Posté le 23-09-2008 à 15:26:12
Il te faut la Standard Taglib 1.1, pas la 1.0 ( http://jakarta.apache.org/site/dow [...] andard.cgi )
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 23-09-2008 à 13:42:23
Bonjour,
Pour la mise en page j'utilise un "include.jsp"
Mais il me mets un message d'erreur :
Cannot find the tag library descriptor for http://java.sun.com/jsp/jstl/fmt
Voici mon code :
<%@ page language="java" %>
<%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
<%@ page session="true" %>
=> <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
Je pense avoir mis les bons fichiers jar, mais ca marche pas.
Pour etre sur, qu'est ce qu'il faut mettre comme librairie, et ou le mettre?
Merci