web.xmlファイルにこのタグを追加
<jsp-config>
<taglib>
<taglib-uri>/birt.tld /taglib-uri>
<taglib-location>/WEB-INF/tlds/birt.tld /taglib-location>
</taglib>
</jsp-config>
あなたのJSPで使用する、このタグlibryを
<%@ taglib uri="/WEB-INF/tlds/birt.tld" prefix="birt"%>
あなたは、JSP
にしたい、このコードを追加します。
<birt:viewer id="birtViewer" reportDesign="bank_detail_report.rptdesign" pattern="run" height="600" width="1000" format="pdf" scrolling="yes" showParameterPage="false">
<birt:param name="param1" value='<%=request.getParameter("txtParam1")%>'></birt:param>
<birt:param name="param2" value='<%=request.getParameter("txtParam1")%>'></birt:param>
</birt:viewer>
'私は、BIRTのtool'を使用して碧玉のレポートを生成している - それはできますか? –