小编典典

将BIRT集成到现有的Webapp中

tomcat

我想将BIRT报告引擎添加到Tomcat中的现有Web应用程序。我不需要BIRT查看器,我真的只希望能够从url这样运行报告,http://localhost:8080/birt/output?__report=test.rptdesign&sample=my+parameter并使用不同的导出选项pdf,xls,doc,html。

到目前为止,我发现的集成指南都包括查看器,并编写了我自己的servlet以处理不同的格式。

我希望有人能简单地知道我需要从报告引擎web.xml文件中的哪些servlet映射,以及我需要从lib目录中包括哪些jars,以便在现有webapp中实现该准系统BIRT。


阅读 335

收藏
2020-06-16

共1个答案

小编典典

我希望有人能简单地知道我需要从报告引擎web.xml文件中的哪些servlet映射,以及我需要从lib目录中包括哪些jars,以便在现有webapp中实现该准系统BIRT。

我并不一定要编写自己的servlet,我只是想将其独立的webapp(此处位于“
runtime”按钮下)中的现有报告运行时集成到我的现有webapp中,因此我不必分发2个webapp支持运行BIRT报告。抱歉,如果不清楚。

我确实以最简单的方式解决了这个问题,以防万一有人有类似的问题(使用BIRT运行时3.7.1):

  1. 您所需要做的就是将以下servlet映射添加到您自己的webapp\web-inf\web.xml文件中:
        <!-- Engine Servlet -->
    <servlet>
        <servlet-name>EngineServlet</servlet-name>
        <servlet-class>org.eclipse.birt.report.servlet.BirtEngineServlet</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>EngineServlet</servlet-name>
        <url-pattern>/output</url-pattern>
    </servlet-mapping>
  1. 运行时目录中的 所有 jar 包含到您自己的目录中。web-inf\libwebapp\web-inf\lib

然后,您可以使用output自己Web应用程序中的BIRT报告网址运行.rptdesign文件,并指定所需的格式,例如:

http://localhost:8080/myOwnWebapp/output?__report=test.rptdesign&__format=pdf
http://localhost:8080/myOwnWebapp/output?__report=test.rptdesign&__format=html
http://localhost:8080/myOwnWebapp/output?__report=test.rptdesign&__format=xls
http://localhost:8080/myOwnWebapp/output?__report=test.rptdesign&__format=doc
http://localhost:8080/myOwnWebapp/output?__report=test.rptdesign&__format=ppt
2020-06-16