salut,
j'ai réaliser avec jsf une interface voici le contenu:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <html><%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsf/core" prefix="core"%>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="html"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Hello World avec JSF</title>
</head>
<body>
<core:view>
<h1><html:outputText value="Hello World avec JSF" /></h1><br>
La même chose avec du HTML : <h1>Hello World avec JSF</h1>
</core:view>
</body>
</html> |
une erreur s'affiche au niveau de:
<%@taglib uri="http://java.sun.com/jsf/core" prefix="core"%>
l'erreur est :"The absolute uri: http://java.sun.com/jsf/core cannot be resolved in either web.xml or the jar files deployed with this application"
merci de me répondre
Partager