bom dia galera,
bom comecei a mexer com display tag hoje e estou tendo uns problemas ::
ele não esta reconhecendo o elemento jsp:root, ele deve ser configurado no container ??
como é isso ??
vou postar o que etou fazendo.
<%@ taglib uri="http://displaytag.org" prefix="display" %>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<jsp:useBean id="teste" scope="session" class="java.util.ArrayList" ></jsp:useBean>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link href="/css/style.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
BODY {
scrollbar-face-color: #CEE6F4;
scrollbar-highlight-color: #6F71AA;
scrollbar-3dlight-color: #CEE6F4;
scrollbar-darkshadow-color: #CEE6F4;
scrollbar-shadow-color: #6F71AA;
scrollbar-arrow-color: #6F71AA;
scrollbar-track-color: #CEE6F4;
}
.titulo {
color: #92b7de;
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: bold;
}
.corpo {
color: #000000;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
}
-->
</style>
</head>
<body bgcolor="#CEE6F4" leftmargin="4" topmargin="4" marginwidth="4"
marginheight="4">
<display:table name="sessionScope.teste" export="true" pagesize="2" >
<display:column property="nome" title="ID" ></display:column>
<display:column property="nome" ></display:column>
<display:setProperty name="export.xml" value="true" />
</display:table>
</body>
</html>
bom isso está funcionando sem problemas, porem no log está me dando esse erro…
INFO [http-8080-1] (ExportViewFactory.java:61) - Initializing ExportViewFactory with type={csv,excel,xml,pdf}
INFO [http-8080-1] (TableProperties.java:536) - No LocaleResolver configured.
INFO [http-8080-1] (TableProperties.java:1196) - I18nResourceProvider initialized to org.displaytag.localization.I18nJstlAdapter.
isso pode influenciar em algo ??
blew…