-4
votes
1answer
22 views

An error occuring when run the jasper report

SEVERE: Servlet.service() for servlet [dispatcher] in context with path [/payroll] threw exception [Request processing failed; nested exception is java.lang.RuntimeException: net.sf.jasperre ...
0
votes
1answer
34 views

XmlBeanFactory can't load properties file as place holder?

I need to load customer fonts in Jasper report, so I use font extenstion. The problem is that I want to load fonts files from a local machine instead of classpath due to legacy problems. So, I ...
0
votes
0answers
49 views

How to get control from servlet after generating jasper report

I have exported the pdf file using Spring MVC with jasper report concept. I need to display progress bar When I click on export button until save pop up will come out on browser. Again I need to close ...
2
votes
2answers
91 views

Jasper Print - Java Heap space memory

Am using Jasper Reports to generate the reports. But I have huge data coming from the Database. While executing Japser print to fill the Report data, its taking huge memory and giving the Java Heap ...
0
votes
0answers
35 views

Delete folder of JasperReports Server Repository

I want to delete one of the folder of JasperReports Server repository. I am using repository.deleteFolder(string URI) API of JR Server. But while deleting the folder I am getting "Access denied" ...
0
votes
1answer
91 views

Spring. Saving pdf to disk location

In order to download PDF on disk <bean id="pdfReport" class="org.springframework.web.servlet.view.jasperreports.JasperReportsPdfView" p:url="classpath:tree-template.jrxml" ...
0
votes
1answer
82 views

Add hibernate object as a parameter to jasperreports

I am trying to add a hibernate object as a parameter to jasperreports. I have added the appropriate import (inside my .jrxml file) but still cant't compile the report. There is a suggestion here to ...
1
vote
1answer
326 views

Getting UTF-8 PDF font into JasperReports 3.7.* report compiled in Java / Spring

By default, the JasperReports 3.7.* does not seem to come with any PDF fonts that support the 'Identity-H' UTF-8 encoding for the PDF Fonts. I find a lot of examples of using iReports to import fonts ...
1
vote
0answers
84 views

How to use Spring bean in JasperReport Expression?

how we can use the spring bean in JasperReport expression to call the method of that bean? as i have implemented, we can call the static methods by adding the jar file to the class path but what if ...
0
votes
1answer
90 views

How to create multipage report using Spring?

How do I generate a multipage report in iReport where each page contains different invoice of a customer? Also, each invoice will get its own datasource which is the detail as well as a support form ...
0
votes
0answers
128 views

Jasper Reports and Multilingual Support

I am developing a java application which uses jasper reports to generate pdf reports. My pdf reports are dynamic and can contain multiple language content at a time. I have embedded verdana font in ...
1
vote
0answers
123 views

Jasper with Spring — so many logs from org.apache.commons.digester

I have a thread here to demonstrate current issue in Spring with Jasper report. I have sorted out most of the issue with help from all geniuses from SO but still stuck on solving the memories spent on ...
0
votes
1answer
218 views

Error instantiating extensions registry for chart.theme [SOLVED]

I'm trying to generate a PDF with JasperReports. At the first time I try, I get this error: ERROR [net.sf.jasperreports.extensions.DefaultExtensionsRegistry] Error instantiating extensions registry ...
4
votes
5answers
2k views

OutOfMemoryError: PermGen Space — Jasper Report with Spring running on Tomcat

Our web application encounter a complicated situation It is a Spring application developed by STS/Tomcat 7. After the application been integrated with Jasper report 4.6.0, it always throw ...
0
votes
1answer
1k views

Integrating JasperReports with Spring

As you know, when using integrating JasperReports views and Spring, the report data key in your xml file takes just one key, I'll demonstrate below. But what if I have more than one key, matter of ...
0
votes
1answer
128 views

How reach *.jasper files with scheduled jobs in Spring?

I am coding a spring application. I have a scheduled job like this. @Async @Scheduled(cron = "0 0 16 * * ?") public void createReport() { // argJasperPath = /WEB-INF/jasperFiles/myreport.jasper ...
0
votes
2answers
393 views

Similar content on multiple pages — Jasper report

My boss is killing me with the 'awesome' idea to generate Jasper report. As long as I am still alive, I have to ask experts here about how to make it happen. The original requirement is to generate ...
0
votes
1answer
593 views

How can I generate Jasper report without data source in Spring MVC

Here I only want to pass a custom class or only parameters into a Jasper template, but it seems without data source there only show up a blank pdf file without any layouts. I guess it is because the ...
1
vote
0answers
250 views

How to pack complicated custom class into Jasper DataSource object

Consider I have this customized class that want to put value of every member variable on a single Jasper report public class Manifest { private IMasterOrder masterOrder; private Employee supervisor; ...
0
votes
0answers
377 views

java.lang.IllegalArgumentException: Value [null] cannot be converted to a JRDataSource

I have a form with 3 fields they are reporttype,startdate,enddate.reporttype is a drop down with 4 values say like A,B,C,D and startdate,enddate are date pickers.I have three buttons as download ...
0
votes
2answers
3k views

Generating the report in word format using jasper

I am using jasper-reports 4.5.0,spring 3.0.5RELEASE integration to generate the reports.Till now i generated in html,csv,pdf formats.But my client wants the report in word format also(.doc format).How ...
1
vote
0answers
524 views

JasperReports: exporting the report to csv format

I am working with JasperReports 4.5.0, Spring 3.0.5 RELEASE. I am exporting my JR report in pdf, html, csv formats. With pdf, html the report is generating fine. But when i am exporting my report in ...
0
votes
1answer
484 views

Displaying images in jasper html reports with spring

I am working on Spring, JasperReports. My Spring version is 3.0.5 RELEASE, iReport-4.5.0. I am using http://chathurangat.blogspot.in/2012/02/jasperreport-with-spring-mvc-fully.html link as sample to ...
1
vote
1answer
382 views

Stopping HTTP Request Timeout in Spring

I have an application and I am generating Jasper Reports from it. But when I make request to generate the report, the time taken for the application to generate the report is quite long because the ...
1
vote
0answers
208 views

Spring + Jasperreports + Unicode Characters are not visible in PDF

I have done almost all the different things mentioned ranging from Font Extension to jasperreports.properties file; but unable to find the solution. Please assist. I am using Ireport designer to ...
0
votes
2answers
419 views

displaying the proper name for my pdf report

I am working with iReport 4.5.0, Spring 3.0.5 Release. I am using this link as the sample to my project because it matches to my requirement exactly. Flow of my code is exactly same as this. But the ...
1
vote
2answers
2k views

Spring - Maven | Jasper dependency

I'm trying to add my spring project the jasper dependency but i'm getting this error below I already tried with diferent versions of jasper and log4j but i cant get it working: I use the latest ...
0
votes
1answer
557 views

FileNotFound exception when trying to get File from resource

I cannot generate myJasperReports.jasper file because its throwing a FileNotFoundException while trying to read the file and create the report. I am using jasper-reports 3.7.5 and annotation-based ...
1
vote
1answer
486 views

Displaying the images in html report using ireport

I was trying for long, am create report using iReport designer. In that its showing the images in all format(PDF,Excel,RTF). but while am trying to display in html format, the image is not displaying. ...
0
votes
0answers
126 views

Designing the jrxml

I am passing the list of objects from the jrBeanCollectionDatasource.Now my doubt is how can i design the jrxml so that it displays the list which is there in the jrBeanCollectionDatasource.I think it ...
0
votes
1answer
986 views

java.lang.NoSuchMethodException: Unknown property ' activePackage'

I am giving the Fieldname in the ireport as the attribute name in the entity class. But I am getting the following Exception. java.lang.NoSuchMethodException: Unknown property 'activePackage' at ...
2
votes
1answer
484 views

How to use JRDataSource for jasper reports

Previously I am sending the connection object to the fillReport() of JasperFillManager class. It is working fine and it is generating the data also. The below is the code I am using for database ...
1
vote
0answers
384 views

Exporting Jasper Reports to XLSX format with Spring 3.0.5

I am using Spring MVC with 3.0.5 release and have reports which export reports to PDF and XLS. But recently I am facing an issue with XLS reporting since it does not support 65,000+ rows. Hence I now ...
0
votes
0answers
945 views

generated jasper report is not showing bar chart

I have a report controller having code: @Controller public class ReportsController { @RequestMapping(value="report.htm",method=RequestMethod.GET) public String showReport() throws ...
2
votes
1answer
1k views

iReport integration with extjs4.0.2a and Java + Spring + Hibernate

I am working on extjs 4.0.2a along with Java. I am using some framework with java such as Hibernate/JPA and Spring. Now I want to use a Jasper Report designing tool i.e. iReport to generate my reports ...
0
votes
2answers
624 views

The JasperReports report not popping up in Spring MVC application

I integrated JasperReports in my springMVC website. It was running fine in my local system but when I upload that website to server report is getting generated but it is not popping up as it was ...
1
vote
1answer
498 views

Spring Custom SSO

I am trying to integrate two separate web applications - one is an existing custom web application with it's own security paradigm and the other is a reporting platform (JasperServer). I want to be ...
0
votes
2answers
3k views

Loading ResourceBundle object in Spring

I need to load the i18n localization properties of my Spring web application as a ResourceBundle object in the context of a deployed WAR running on JBoss AS7. The reason here is that I need to feed ...
0
votes
1answer
379 views

Filename of generated report when extending AbstractJasperReportsSingleFormatView

I have a class that extends AbstractJasperReportsSingleFormatView to generate a JasperReport in Excel format. Currrently, when I execute the report and the Save File dialog shows, the report is saved ...
0
votes
2answers
2k views

JasperReports HTML report pagination

I'm generating an HTML report for showing table data in a web application, using JasperReports and Spring MVC 3. Does JasperReports provide some kind of pagination method? Or, is it possible to ...
0
votes
1answer
1k views

Images not shown in JasperReports' html report

I'm working on a reporting web application using JasperReport and Spring MVC 3 to show generated reports (html) into web pages. I'm new to both frameworks and I'm having troubles rendering images in ...
3
votes
1answer
563 views

What's the best way to show html reports generated by JasperReport in a jsp?

I'm working on a reporting web application using JasperReports and Spring MVC. Now, i need to show the reports generated by Jasper, inside a web page. Is there some facility using ...
0
votes
1answer
150 views

about wiring spring beans through custom reporting context in grails

Hi I am using Jasper Reports for my Grails based web application and I have a ReportingContext.xml which has beans for each report like report id/name mapping with the report template (jrxml). I need ...
0
votes
1answer
456 views

Inetgrating iReport(with large no of sub reports) with Spring MVC

My current application includes a functionality of displaying a report designed in iReports 4.1.1 from Spring MVC at front and using PostgreSQL at back. Now i am more of concerned about its ...
3
votes
3answers
1k views

Spring JasperReports Images Location

JasperReport requires (by default) that images be in "WEB-INF/classes/". I'd like to share images between PDFs and normal JSP pages. I'd rather not clutter up classpath with garbage image files. How ...
0
votes
1answer
2k views

iReport Spring loaded Hibernate connection

i'm experiencing difficulties while trying to create a report using iReport via a Spring loaded Hibernate connection because i'm using spring. the problem is when i try to create a database connection ...
1
vote
1answer
384 views

Load .jasper in the service layer with spring 2.5

I am developing a web application with maven, spring 2.5 and some other technologies. The application it is composed of 3 layer dao service and web, the dao and service are packed as jar and used as ...
0
votes
1answer
983 views

ireport4 java.lang.ClassNotFoundException: org.apache.batik.svggen.SVGGraphics2DIOException

I am using Timeseries Chart. It's works fine. But, when I using it in JAVA,some exception occurs. JasperPrint jasperPrint = JasperFillManager.fillReport(jasperPrintFile.getPath(), paraMap, ...
2
votes
2answers
2k views

Jasper Reports Save PDF to disk

I'm using Jasper Reports within Spring. Is it possible to let Jasper generate the PDF of the report and save it to the file system?
0
votes
2answers
5k views

Jasper Reports empty PDF report problem, using Spring ModelAndView

I am trying to generate PDF report with Jasper Reports using Spring. But report is always empty. I searched a lot and could not find problem. I tried to write byte[] pdfReport to OutputStream but ...

1 2