Want to develop Jasper Report with Struts2 - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T07:16:59Zhttp://stackoverflow.com/feeds/question/910167http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/910167/want-to-develop-jasper-report-with-struts21Want to develop Jasper Report with Struts2Nirmal2009-05-26T11:15:38Z2009-05-28T13:28:08Z
<p>Hello All,</p>
<p>I am developing project using Spring, Struts2 & Hibernate.</p>
<p>Now i want to use a Jasper Report with Struts2.</p>
<p>But i am totally new with Jasper Report.</p>
<p>Can anyone give simple example or a tutorial or any other link which can help me..</p>
<p>Thanx in advance..</p>
http://stackoverflow.com/questions/910167/want-to-develop-jasper-report-with-struts2/910187#9101871Answer by Tahir Akhtar for Want to develop Jasper Report with Struts2Tahir Akhtar2009-05-26T11:21:48Z2009-05-26T11:21:48Z<p>I think any jasper-report tutorial will be good for you. Struts2 won't have much influence on how you generate your JasperReport. </p>
<p>You might want to take a look at "Stream Result":</p>
<p><a href="http://struts.apache.org/2.x/docs/stream-result.html" rel="nofollow">http://struts.apache.org/2.x/docs/stream-result.html</a></p>
<p><strong>EDIT:</strong>
I just found this and I think this is what you are looking for:
<a href="http://struts.apache.org/2.x/docs/jasperreports-plugin.html" rel="nofollow">http://struts.apache.org/2.x/docs/jasperreports-plugin.html</a>
<a href="http://struts.apache.org/2.x/docs/jasperreports-tutorial.html" rel="nofollow">http://struts.apache.org/2.x/docs/jasperreports-tutorial.html</a></p>
http://stackoverflow.com/questions/910167/want-to-develop-jasper-report-with-struts2/920845#9208450Answer by Peter Kelley for Want to develop Jasper Report with Struts2Peter Kelley2009-05-28T13:28:08Z2009-05-28T13:28:08Z<p>The tutorial that Tahir mentions should help you out. I think I wrote the first version of that way back in the Webwork days. The way that this works is to take a property of your action as an iterable type and to use that as a Jasper data source. That way you can report on your actions instead of against the database. I wrote this to allow us to report against a Versant object database which no reporting tools existed for.</p>