Book Image

Pentaho 8 Reporting for Java Developers

By : Jasmine Kaur, Francesco Corti
Book Image

Pentaho 8 Reporting for Java Developers

By: Jasmine Kaur, Francesco Corti

Overview of this book

This hands-on tutorial, filled with exercises and examples, introduces the reader to a variety of concepts within Pentaho Reporting. With screenshots that show you how reports look at design time as well as how they should look when rendered as PDF, Excel, HTML, Text, Rich-Text-File, XML, and CSV, this book also contains complete example source code that you can copy and paste into your environment to get up-and-running quickly. Updated to cover the features of Pentaho 8, this book will teach you everything you need to know to build fast, efficient reports using Pentaho. If your interest lies in the technical details of creating reports and you want to see how to solve common reporting problems with a minimum of fuss, this is the book for you.
Table of Contents (25 chapters)
Title Page
Credits
About the Author
About the Reviewers
www.PacktPub.com
Customer Feedback
Dedication
Preface

Pentaho Reporting SDK nightly build


Once the Pentaho Reporting artifact has been built, all the Pentaho Reporting libraries will be available in it, as described in Chapter 1, Introduction to Pentaho Reporting. In this section, you are going to learn how to use the nightly build in your Java projects, using Pentaho Reporting in its latest (and possibly unstable) release for evaluation purpose.

Assuming that you have an existing Java project using Pentaho Reporting, let's see in the following sections how to update it to use the nightly build. As an example, you can use one of the examples available in the GitHub repository at https://github.com/fcorti/pentaho-8-reporting-for-java-developers.

To prepare the project, copy it into a working folder. As an example, you could use the project stored in the Chapter 03 - Getting started with Reporting SDK/pentaho-reporting-web-app folder.

Updating the pom.xml file

The very first task to prepare the existing project is to change the pom.xml file. Opening...