Fala povo,
Estou desenvolvendo uma aplicação com JSF e me surgiu uma dúvida. A principio o código que estava escrevendo era puro JSF tendo o mínimo de HTML possível:
<%@ page language="java" pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>Login Incorreto</title>
</head>
<body>
<f:view>
Usuário ou senha incorretos. <br>
<h:outputLabel value="Usuário: #{seguranca.login}"/>
<br>
<h:outputLabel value="Senha: #{seguranca.senha}"/>
<br>
<h:commandButton/>
</f:view>
</body>
</html>
Mais a necessidade de uma layout mais elaborado me fez apelar para o velho e bom html e css:
<%@ page language="java" pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>FARN - Desenvolvimento de Sistemas Corporativos</title>
<link href="css/styleQuestionario" rel="stylesheet" type="text/css">
</head>
<body>
<f:view>
<table width="500" height="350" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="29" height="29"><img src="images/imgBodyTopLeft.png" width="29" height="29"></td>
<td background="images/imgBodyBgTop.png">&nbsp;</td>
<td width="29"><img src="images/imgBodyTopRight.png" width="29" height="29"></td>
</tr>
<tr>
<td background="images/imgBodyBgLeft.png">&nbsp;</td>
<td valign="top" bgcolor="#ffffff">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><img src="images/imgLogo.png" width="184" height="73"></td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td align="center">
<b>Usuário ou senha incorretos.</b>
<br><br>
<h:outputLabel value="Usuário: #{seguranca.login}" styleClass="textoNormal" />
<br>
<h:outputLabel value="Senha: #{seguranca.senha}" styleClass="textoNormal"/>
<br><br>
<h:commandButton value="Voltar" onclick="javascript:window.history.back();" styleClass="objForm"/>
</td>
</tr>
</table>
</td>
<td background="images/imgBodyBgRight.png">&nbsp;</td>
</tr>
<tr>
<td height="29"><img src="images/imgBodyBottomLeft.png" width="29" height="29"></td>
<td background="images/imgBodyBgBottom.png">&nbsp;</td>
<td><img src="images/imgBodyBottomRight.png" width="29" height="29"></td>
</tr>
</table>
</f:view>
</body>
</html>
Os dois código ai seria um “Antes” e “Depois” de uma arrumanda no layout com html. Minha dúvida é a seguinte, tem algum problema deu estar incrementando um arquivo jsf com tanto html assim? Isso geralmente é usado ou só os iniciantes como eu faz ??
Valew povo, agradeço desde já.
Fernando Lopes