Bonsoir
J'utilise JSF 1.2 ,une application web dynamique avec eclipse et JBOSS GA V5
comme serveur d'application
Je test la jsp suivante:
j ai aucun problème elle apparait super
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <f:view> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>ttttttttttttttt</title> </head> <body> </body> </html> </f:view>
mais dés que j ajoute cette passrelle de code j ai un problème
S'il vous plaît, aidez moi pourquoi ça ne marche pas que dois je vérifier
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <f:view> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>ttttttttttttttt</title> </head> <body> <h:outputText value="Soyer les bien venu chez nous"></h:outputText> </body> </html> </f:view>
est-ce que le problème provient de Jboss ou bien de Jsf.
(fichier de configuration)
![]()
Partager