用spring mvc显示标签库

时间:2012-12-11 22:01:25

标签: export displaytag

我正在开发一个带有spring mvc的portlet。 我正在使用显示标签库导出数据excel,csv,xml等。

我列出了如上所述的真实值,

  1. ad Soyad(专栏名称)

  2. Erdi Kaya

    3.serkan gurbuz

  3. 我的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罐和其他必需的罐子。

1 个答案:

答案 0 :(得分:0)

您需要在web.xml中配置导出过滤器。它有助于将内容转换为预期的格式。 阅读以下链接以了解详细信息。

Export filter? What's that?