Bonjour,

Au démarrage de mon application, j'ai l'erreur suivante !

Compilation of JSP File '/index.jsp' failed:
--------------------------------------------------------------------------------

index.jsp:7:7: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ taglib uri="/WEB-INF/mod-tag.tld" prefix="ichm" %>
^----^
index.jsp:7:7: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ taglib uri="/WEB-INF/mod-tag.tld" prefix="ichm" %>
^----^
Mon mod-tag.tld est bien dans mon WEB-INF !

voici la partie de ma page d'index qui déclare les différentes URI (pour info je n'ai pas d'erreur sur les autres taglib):

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
<html>
	<head>
		<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
		<%@ taglib uri="/WEB-INF/sls.tld" prefix="sls" %>
		<%@ taglib uri="/WEB-INF/mod-tag.tld" prefix="ichm" %>
		<%@ taglib uri="/WEB-INF/con-tag.tld" prefix="sCon" %>
D'où pourrait venir une erreur pareil ?
Merci pour votre aide