从 JSP 调用 JasperServer 仪表板
我的 JasperServer 中有一个仪表板项目,我想从 JSP 中以编程方式调用它。我已经知道如何调用报告,但对于仪表板我不知道该怎么做。我们如何从 JSP 页面调用仪表板?如何在仪表板内传递报告的参数?
I have a dashboard item in my JasperServer that I want to call programatically from my JSP. I already knew how to call a report, but for dashboards I don't know how to do it. How do we call the dashboard from a JSP page? And how can I pass the parameters for the report inside the dashboard?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有像报告那样可以调用仪表板的 Web 服务 API。有一天肯定会添加这个......但现在您只能使用 HTTP 调用来调用仪表板。
There is no web services API to call dashboards like there is for reports. This will surely be added someday... but for now you can only call a dashboard with an HTTP call.
现在,您应该能够通过在任何参数值上使用“hidden_”前缀来完成此操作:
如果您想要显示 Jasper Server 中的所有装饰和工具栏,您可以省略最后两个参数。
因此,在 JSP 中,您可以拥有一个表单,其中所有参数都作为隐藏输入,但名称以“hidden_”为前缀。
希望它仍然可以帮助别人
Right now you should be able to do this by using the "hidden_" prefix on any parameter value:
You can ommit the last two parameters in case you want to display all the decoration and toolbars from the Jasper Server.
So in the JSP you can have a form with all the parameters as hidden inputs, but with a name prefixed by "hidden_".
Hope it still could help someone