2 pièce(s) jointe(s)
Importation d'un fichier xml sur une JSP
J’essaie d'apprendre à utiliser les fichiers XML dans une page JSP, voici la structure de mon projet =>
Pièce jointe 244895
Quand j'utilise la commande d'importation du fichier xml dans le fichier jsp, j'ai cette erreur comme résultat.
Pièce jointe 244896
Voici le contenu de ma page jsp:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>My Familly</title>
</head>
<body>
<c:import url="/WEB-INF/MyFamilly.xml" varReader="myFamilly">
</c:import>
</body>
</html> |
Merci d'avance !