如何在Spring View中集成Jasper HTML报告(概念)
我想在Spring框架应用程序中创建一种仪表板。 我有一个视图(jsp),并希望在我生成的HTML页面的特定部分中包含Jasper Report HTML /饼图图像输出(在我的html示例中)。
这可能吗?如是。报告是否会在控制器中生成并通过ModelView发送到视图?
我的视图(dashboard.jsp)看起来像这样(示例):
<%@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>