我正在开发一个带有spring mvc的portlet。 我正在使用显示标签库导出数据excel,csv,xml等。
我列出了如上所述的真实值,
ad Soyad(专栏名称)
Erdi Kaya
3.serkan gurbuz
我的jsp文件,
<%@ page buffer = "16kb" %>
<%@ taglib prefix="portlet" uri="http://java.sun.com/portlet_2_0"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ page contentType="text/html" isELIgnored="false"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@taglib uri="http://www.springframework.org/tags" prefix="spring" %>
<%@ taglib prefix="display" uri="http://displaytag.sf.net" %>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>
<display:table name="userList" export="true" >
<display:column property="ad" title="ID" sortable="true" headerClass="sortable" />
<display:column property="soyad" sortable="true" headerClass="sortable" />
</display:table>
当我点击excel,csv或xml时出现错误
在返回导出的数据之前无法重置响应。您没有使用导出过滤器。确保在display:table之前没有使用其他jsp标记,或者参考displaytag文档,了解如何配置导出过滤器(需要j2ee 1.3)。
ı还没有解决2天的错误。我正在使用显示器1.2罐和其他必需的罐子。