Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/spring/13.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在Spring视图中集成Jasper HTML报告(概念性)_Spring_Jasper Reports_Conceptual - Fatal编程技术网

如何在Spring视图中集成Jasper HTML报告(概念性)

如何在Spring视图中集成Jasper HTML报告(概念性),spring,jasper-reports,conceptual,Spring,Jasper Reports,Conceptual,如何在Spring视图中集成Jasper HTML报告(概念性) 我想在Spring框架应用程序中创建一种仪表板。 我有一个视图(jsp),希望在生成的HTML页面的特定部分中包含Jasper Report HTML/饼图图像输出(在我的HTML示例中) 这可能吗?如果有的话。报告是否会在控制器中生成并通过ModelView发送到视图 我的视图(dashboard.jsp)如下所示(示例): 关键人物 ${listValue} 模型中的其他内容 Mcfly soft:您是否能够找到上述问题的任

如何在Spring视图中集成Jasper HTML报告(概念性)

我想在Spring框架应用程序中创建一种仪表板。 我有一个视图(jsp),希望在生成的HTML页面的特定部分中包含Jasper Report HTML/饼图图像输出(在我的HTML示例中)

这可能吗?如果有的话。报告是否会在控制器中生成并通过ModelView发送到视图

我的视图(dashboard.jsp)如下所示(示例):


关键人物
  • ${listValue}
  • 模型中的其他内容
    Mcfly soft:您是否能够找到上述问题的任何解决方案。如果可以,请分享。Mcfly soft:您是否能够找到上述问题的任何解决方案。如果有,请分享。
    <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
    <html>
    <body>
        <h2>Key Figures</h2>
    <table border=1 width=700>
    <tbody> 
        <tr> <Navigation Items like Buttons and Tabs> </tr>
        <tr height=200>
            <td><c:forEach var="listValue" items="${lists}">
                    <li>${listValue}</li>
                </c:forEach>
                    </td>
            <td>Other Content from the Model</td>
    
        </tr>
        <tr height=200>
            <td><My Pie Chart 1></td>
            <td><My Pie Chart 2></td>
    
        </tr>
    </tbody>
    </table>
    </body>
    </html>