posted 13 years ago
HI,
I am trying to run jasper report from Struts2. I am using embeded sql in my jasper report as the datasource.
In the STRUTS.xml file, I define the action as following ( This is something I found in the web, just use it as an example).
My question:
Since I am using embed sql defined in my jasper report as datasource. How do I specify the value for the param "dataSource" here in STRUTS.xml?
Any help is greatly appreciated !!
<package name="default" namespace="/" extends="jasperreports-default">
<action name="myJasperTest">
<result name="pdf" type="jasper">
<param name="location">/jasper/our_compiled_template.jasper</param>
<param name="dataSource">myList</param>
<param name="format">PDF</param>
<param name="contentType">application/pdf</param>
<param name="contentDisposition">filename="document.pdf"</param>
</result>
</action>